Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Command Line Arguments Questions
What will be the output of the program if it is executed like below? cmd> sample /* sample.c */ #include
int main(int argc, char **argv) { printf("%s\n", argv[argc-1]); return 0; }
What will be the output of the program (myprog.c) given below if it is executed from the command line? cmd> myprog one two three /* myprog.c */ #include
#include
int main(int argc, char **argv) { printf("%s\n", *++argv); return 0; }
What will be the output of the program (sample.c) given below if it is executed from the command line? cmd> sample friday tuesday sunday /* sample.c */ #include
int main(int sizeofargv, char *argv[]) { while(sizeofargv) printf("%s", argv[--sizeofargv]); return 0; }
What will be the output of the program (sample.c) given below if it is executed from the command line? cmd> sample "*.c" /* sample.c */ #include
int main(int argc, int *argv) { int i; for(i=1; i
What will be the output of the program (sample.c) given below if it is executed from the command line? cmd> sample friday tuesday sunday /* sample.c */ #include
int main(int argc, char *argv[]) { printf("%c", **++argv); return 0; }
What will be the output of the program (sample.c) given below if it is executed from the command line? cmd> sample one two three /* sample.c */ #include
int main(int argc, char *argv[]) { int i=0; i+=strlen(argv[1]); while(i>0) { printf("%c", argv[1][--i]); } return 0; }
If the following program (myproc.c) is present in the directory "C:\TC" then what will be output of the program if run it from DOS shell? /* myproc.c */ #include
int main(int argc, char *argv[]) { printf("%s", argv[0]); return 0; }
What will be the output of the program in Turbo C? #include
int main(int argc, char *argv, char *env[]) { int i; for(i=1; i
What will be the output of the program (myprog.c) given below if it is executed from the command line? cmd> myprog one two three /* myprog.c */ #include
int main(int argc, char *argv[]) { int i; for(i=1; i
What will be the output of the program (myprog.c) given below if it is executed from the command line? cmd> myprog 1 2 3 /* myprog.c */ #include
#include
int main(int argc, char **argv) { int i, j=0; for(i=0; i
What will be the output of the program #include
void fun(int); int main(int argc) { printf("%d ", argc); fun(argc); return 0; } void fun(int i) { if(i!=4) main(++i); }
What will be the output of the program (myprog.c) given below if it is executed from the command line? cmd> myprog friday tuesday sunday /* myprog.c */ #include
int main(int argc, char *argv[]) { printf("%c", *++argv[1]); return 0; }
What will be the output of the program (myprog.c) given below if it is executed from the command line? cmd> myprog one two three /* myprog.c */ #include
int main(int argc, char **argv) { printf("%c\n", **++argv); return 0; }
What will be the output of the program (sample.c) given below if it is executed from the command line (Turbo C in DOS)? cmd> sample 1 2 3 /* sample.c */ #include
int main(int argc, char *argv[]) { int j; j = argv[1] + argv[2] + argv[3]; printf("%d", j); return 0; }
What will be the output of the program (sample.c) given below if it is executed from the command line? cmd> sample 1 2 3 cmd> sample 2 2 3 cmd> sample 3 2 3 /* sample.c */ #include
int main(int argc, char *argv[]) { printf("%s\n", argv[0]); return 0; }
What will be the output of the program (sample.c) given below if it is executed from the command line? cmd> sample friday tuesday sunday /* sample.c */ #include
int main(int argc, char *argv[]) { printf("%c", *++argv[2] ); return 0; }
What will be the output of the program (myprog.c) given below if it is executed from the command line? cmd> myprog one two three /* myprog.c */ #include
#include
int main(int argc, char **argv) { int i; for(i=1; i<=3; i++) printf("%u\n", &argv[i]); return 0; } If the first value printed by the above program is 65517, what will be the rest of output?
What will be the output of the program (sample.c) given below if it is executed from the command line? cmd> sample monday tuesday wednesday thursday /* sample.c */ #include
int main(int argc, char *argv[]) { while(--argc>0) printf("%s", *++argv); return 0; }
What will be the output of the program (myprog.c) given below if it is executed from the command line? cmd> myprog 10 20 30 /* myprog.c */ #include
int main(int argc, char **argv) { int i; for(i=0; i
What will be the output of the program (sample.c) given below if it is executed from the command line (turbo c under DOS)? cmd> sample Good Morning /* sample.c */ #include
int main(int argc, char *argv[]) { printf("%d %s", argc, argv[1]); return 0; }
1
2