C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 0 10 14 1 None of these 0 10 14 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with Both of the above A number An alphabet A special symbol other than underscore Both of the above A number An alphabet A special symbol other than underscore ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment, and choose the correct onevoid main(){ int a, b = 2, c; a = 2 * (b++); c = 2 * (++b);} a = 4, c = 6 b = 3, c = 6 a = 4, c = 8 b = 4, c = 6 a = 3, c = 8 a = 4, c = 6 b = 3, c = 6 a = 4, c = 8 b = 4, c = 6 a = 3, c = 8 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Division operator Unary-operator Assignment operator Conditional operator Comma operator Division operator Unary-operator Assignment operator Conditional operator Comma operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program? #include\ int main(){ extern int i; i = 20; printf("%ld ", sizeof(i)); return 0; } 4 Linker Error : Undefined symbol 'i' Depends on the Compiler 2 4 Linker Error : Undefined symbol 'i' Depends on the Compiler 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 5 5 10 5 4 3 10 5 4 4 10 5 3 4 10 5 3 3 10 5 5 5 10 5 4 3 10 5 4 4 10 5 3 4 10 5 3 3 ANSWER DOWNLOAD EXAMIANS APP