C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} 20 Linker Error Compiler Error 2 20 Linker Error Compiler Error 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} None of These Compiler Error 10 50 None of These Compiler Error 10 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? printf() scanf() None of these gets() puts() printf() scanf() None of these gets() puts() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 55445 54554 45545 54544 55445 54554 45545 54544 ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 None of these 216 – 1 215 215 – 1 216 None of these 216 – 1 215 215 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the following code's output if choice = 'R'?switch(choice){ case 'R' : printf("RED"); case 'W' : printf("WHITE"); case 'B' : printf("BLUE"); default : printf("ERROR");break;} RED WHITE BLUE ERROR RED WHITE BLUE ERROR RED ERROR RED RED WHITE BLUE ERROR RED WHITE BLUE ERROR RED ERROR RED ANSWER DOWNLOAD EXAMIANS APP