Files
BUT2/SCR/SCR3.1/TP03/Exercise4/rebours.c

13 lines
201 B
C
Raw Normal View History

2025-10-08 15:48:44 +02:00
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char* argv[]) {
assert(argc == 2);
long i = strtol(argv[1], NULL, 10);
return EXIT_SUCCESS;
}