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 friday tuesday sunday / sample.c / #include<stdio.h> int main(int sizeofargv, char argv[]) { while(sizeofargv) printf("%s", argv[--sizeofargv]); 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 built Char Minar?....
QA->Who has been appointed as the new CMD of Small Industries Development Bank of India (SIDBI)?....
QA->The 12th date of a month is Saturday. Then the third Tuesday will be on?....
MCQ->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<stdio.h> int main(int sizeofargv, char argv[]) { while(sizeofargv) printf("%s", argv[--sizeofargv]); return 0; }....
MCQ->What will be the output of the program? #include<stdio.h> #include<stdarg.h> void fun1(char, int, int , float , char ); void fun2(char ch, ...); void (p1)(char, int, int , float , char ); void (p2)(char ch, ...); int main() { char ch='A'; int i=10; float f=3.14; char p="Hello"; p1=fun1; p2=fun2; (p1)(ch, i, &i, &f, p); (p2)(ch, i, &i, &f, p); return 0; } void fun1(char ch, int i, int pi, float pf, char p) { printf("%c %d %d %f %s \n", ch, i, pi, pf, p); } void fun2(char ch, ...) { int i, pi; float pf; char p; va_list list; printf("%c ", ch); va_start(list, ch); i = va_arg(list, int); printf("%d ", i); pi = va_arg(list, int); printf("%d ", pi); pf = va_arg(list, float); printf("%f ", pf); p = va_arg(list, char ); printf("%s", p); }....
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? cmd> sample friday tuesday sunday / sample.c / #include<stdio.h> int main(int argc, char argv[]) { printf("%c", ++argv); 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 friday tuesday sunday / sample.c / #include<stdio.h> int main(int argc, char argv[]) { printf("%c", ++argv[2] ); 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