C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 – 1 216 215 None of these 216 – 1 215 – 1 216 215 None of these 216 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Makes the debugging task easier. Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. Enhances the logical clarity of the program. Makes the debugging task easier. Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. Enhances the logical clarity of the program. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define clrscr() 100void main(){ clrscr(); printf("%d", clrscr());} 100 1 Error 100 1 Error 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 fff4 fff1 fff0 fff3 fff2 fff4 fff1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} None of These 7 6 5 None of These 7 6 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 0 14 10 1 None of these 0 14 10 1 None of these ANSWER DOWNLOAD EXAMIANS APP