Question Set

1. 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<stdio.h> int main(int argc, int argv) { int i; for(i=1; i<argc; i++) printf("%s\n", argv[i]); return 0; }





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->A statement followed by two assumptions I and II is given. You have to consider the statement to be true even if it seems to be at variance from commonly known facts. You are to decide which of the given assumptions can definitely be drawn from the given statement. Indicate which one of the four given alternatives is correct ? Statement : If more encouragement is given to Sports, Indians will win more gold medals at the Olympic Games. Assumptions : I. Indians do not win gold medals. II. More enc....
QA->Two statements are given followed by two conclusions I and II. You have to consider the two statements to be true even if they seem to be at variance from commonly known facts. You have to decide which one of the given conclusions is definitely drawn from the given statements. Statement : All virtuous persons are happy. No unhappy person is virtuous. Conclusions : I. Happiness is related to virtue II. Unhappy person is not virtuous.....
QA->Who has been appointed as the new CMD of Small Industries Development Bank of India (SIDBI)?....
QA->Name the translatory program which translates the high level language into machine language before running the program?....
QA->An unauthorized program which functions from inside what seems to be an authorized program, thereby concealing what it is actually doing:....
MCQ->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<stdio.h> int main(int argc, char argv[]) { printf("%s\n", argv[0]); return 0; }....
MCQ->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<stdio.h> int main(int argc, char argv[]) { int j; j = argv[1] + argv[2] + argv[3]; printf("%d", j); return 0; }....
MCQ->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<stdio.h> int main(int argc, int argv) { int i; for(i=1; i<argc; i++) printf("%s\n", argv[i]); return 0; }....
MCQ->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<stdio.h> int main(int argc, char argv[]) { int i=0; i+=strlen(argv[1]); while(i>0) { printf("%c", argv[1][--i]); } return 0; }....
MCQ->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<stdio.h> int main(int argc, char argv[]) { printf("%d %s", argc, argv[1]); return 0; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution