C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 1 10 0 14 None of these 1 10 0 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 – 1 216 None of these 216 – 1 215 215 – 1 216 None of these 216 – 1 215 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 11 6 6 6 12 7 6 7 5 6 11 6 6 6 12 7 6 7 5 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: *float ptr; float *ptr; float ptr; None of these *float ptr; float *ptr; float ptr; None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} Garbage Value 6 None of these 0 5 Garbage Value 6 None of these 0 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following code:void main(){ int a[5] = {6,8,3,9,0}, i=0; if(i != 0) { break; printf("%d", a[i]); } else printf("%d", a[i++]);}What is the output of the above program? Runtime error No output 6 Syntax error 8 Runtime error No output 6 Syntax error 8 ANSWER DOWNLOAD EXAMIANS APP