add TP03 SCR

This commit is contained in:
2025-10-08 15:48:44 +02:00
parent 6ceeffac0e
commit 9bf3a922b2
10 changed files with 132 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#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;
}