C Programming Standard ANSI C recognizes ______ number of keywords? 40 30 24 32 36 40 30 24 32 36 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);} 14 Compilation error 13 12 11 14 Compilation error 13 12 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0; for(;i++;printf("%d", i)); printf("%d", i);} 1 12 Error 11 1 12 Error 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?main(){ static int var = 5; printf("%d ", var--); if(var) main();} 5 4 3 2 1 5 5 5 5 5 Compilation Error Infinite Loop None of these 5 4 3 2 1 5 5 5 5 5 Compilation Error Infinite Loop None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? start() main() printf() getch() system() start() main() printf() getch() system() ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Must contain at least one function. Needs input data. Need not contain any function. None of these Must contain at least one function. Needs input data. Need not contain any function. None of these ANSWER DOWNLOAD EXAMIANS APP