C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 14 10 1 None of these 0 14 10 1 None of these 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=3; switch(i) { default: printf("zero"); case 1: printf("one"); break; case 2: printf("two"); break; case 3: printf("three"); break; }} zero None of These Error three zero None of These Error three ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 053 65 53 65 065 65 Syntax error 65 65 053 65 53 65 065 65 Syntax error 65 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 1 0 Garbage Value 2 3 1 0 Garbage Value 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} H Hello Some Address will be printed None of These H Hello Some Address will be printed None of These 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);} complier error 1 -1 1 1 -1 -1 1 -1 complier error 1 -1 1 1 -1 -1 1 -1 ANSWER DOWNLOAD EXAMIANS APP