C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 1 14 10 None of these 0 1 14 10 None of these 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} Compiler Error 0 7 6 5 Compiler Error 0 7 6 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} 0 1 Error 100 0 1 Error 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Arithmetic expressions Both of the above Members of a structure Local variables R-values Arithmetic expressions Both of the above Members of a structure Local variables R-values ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as Data processing language System programming language General purpose language None of these Data processing language System programming language General purpose language None of these 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); }} 4 5 6 7 8 9 None of these 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 10 1 2 3 10 4 5 6 7 8 9 None of these 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 10 1 2 3 10 ANSWER DOWNLOAD EXAMIANS APP