C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} 11 Compilation error 13 14 12 11 Compilation error 13 14 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 10 11 9 None of These 10 11 9 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope No scope at all Local scope Block scope File scope Function scope No scope at all Local scope Block scope File scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int var = 5; printf("%d ", var--); if(var) main();} 5 5 5 5 5 None of These 5 4 3 2 1 Infinite Loop 5 5 5 5 5 None of These 5 4 3 2 1 Infinite Loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? getch() start() main() printf() system() getch() start() main() printf() system() ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Equality operators Relational operators Logical operators Arithmetic operators Equality operators Relational operators Logical operators Arithmetic operators ANSWER DOWNLOAD EXAMIANS APP