changement du fichier tp scr

This commit is contained in:
2025-10-23 14:29:21 +02:00
parent fb76e22594
commit df89b08f5d
27 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <assert.h>
int main(int argc, char *argv[]){
if(argc != 3) {
fprintf(stderr, "Usage :%s <max> <n>\n",argv[0]);
return 1;
}
long N = strtol(argv[1], NULL,0);
long M = strtol(argv[2], NULL,0);
}