bruh. ofc 0 is always args

what was the point of including that?
This commit is contained in:
2026-01-14 21:09:29 +05:30
parent ffc2d6eb87
commit bce608e130

View File

@@ -8,7 +8,7 @@ int main(int argc, char **argv){
return 1;
}
for (int i=0; i<argc; i++){
for (int i=1; i<argc; i++){
char *arg = argv[i][0] == '\0' ? "''" : argv[i];
printf ( "@%d\t%s\n", i, arg);
}