13 lines
182 B
C
13 lines
182 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
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];
|
|
}
|
|
return 0;
|
|
}
|
|
|