C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} 65486, 65486 65486, 65487 65486, 65488 65486, 65490 None of these 65486, 65486 65486, 65487 65486, 65488 65486, 65490 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of macros Takes care of conditional compilation Takes care of include files All of these Acts before compilation Takes care of macros Takes care of conditional compilation Takes care of include files All of these Acts before compilation ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 10 None of These 11 9 10 None of These 11 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); Syntax error 0123456789 10 Infinite loop 0 Syntax error 0123456789 10 Infinite loop 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 – 1 None of these 215 215 – 1 216 216 – 1 None of these 215 215 – 1 216 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff0 fff3 fff2 fff1 fff4 fff0 fff3 fff2 fff1 fff4 ANSWER DOWNLOAD EXAMIANS APP