C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} Compiler Error 10 None of These 50 Compiler Error 10 None of These 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. None of these Sequential Sequential and Random Random None of these Sequential Sequential and Random Random ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} 1 -1 1 1 -1 -1 complier error 1 -1 1 -1 1 1 -1 -1 complier error 1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int var = 5; printf("%d ", var--); if(var) main();} Infinite Loop None of These 5 5 5 5 5 5 4 3 2 1 Infinite Loop None of These 5 5 5 5 5 5 4 3 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }} Compiler Error GOOD None of These GOOD BAD Compiler Error GOOD None of These GOOD BAD ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of macros Takes care of include files Acts before compilation All of these Takes care of conditional compilation Takes care of macros Takes care of include files Acts before compilation All of these Takes care of conditional compilation ANSWER DOWNLOAD EXAMIANS APP