SCR/SCR3.1/TP4/test.c

13 lines
182 B
C
Raw Normal View History

2023-09-29 12:32:18 +02:00
#include <stdio.h>
#include <stdlib.h>
2023-10-05 07:53:10 +02:00
int main(int argc, char** argv){
int t[4] = {1, 2, 3, 4};
char* args;
for (int i = 0; i < argc; i++){
args += argv[i];
}
2023-09-29 12:32:18 +02:00
return 0;
}