C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); 0 Infinite loop 0123456789 10 Syntax error 0 Infinite loop 0123456789 10 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is None of these. call by value result call by value call by reference None of these. call by value result call by value call by reference ANSWER DOWNLOAD EXAMIANS APP
C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } Error Some address will be printed. Will make an infinite loop. None of these. Error Some address will be printed. Will make an infinite loop. None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} Compilation error 11 12 14 13 Compilation error 11 12 14 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} None of these Morning M Good Morning Good None of these Morning M Good Morning Good ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} None of these 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 10 4 5 6 7 8 9 1 2 3 10 None of these 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 10 4 5 6 7 8 9 1 2 3 10 ANSWER DOWNLOAD EXAMIANS APP