/* sample.c */ #include<stdio.h> int main(int argc, char *argv[]) { int j; j = argv[1] + argv[2] + argv[3]; printf("%d", j); return 0; }
Example: j = atoi(argv[1]) + atoi(argv[2]) + atoi(argv[3]);
Comments
Copyright ©CuriousTab. All rights reserved.
What will be the output of the program () given below if it is executed from the command line?569 #include <> int main(int sizeofargv,char*argv[]) { while(sizeofargv) printf("%s",argv[--sizeofargv]); return 0; } sample friday tuesday sunday sample friday tuesday sunday tuesday friday sample sunday tuesday friday