C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 14 10 1 0 None of these 14 10 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} None of These 16 64 4 None of These 16 64 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} H Hello None of These Some Address will be printed H Hello None of These Some Address will be printed ANSWER DOWNLOAD EXAMIANS APP
C Programming The operator > and < are meaningful when used with pointers, if None of these. The pointers point to elements of the same array. The pointers point to structure of similar data type. The pointers point to data of similar type. None of these. The pointers point to elements of the same array. The pointers point to structure of similar data type. The pointers point to data of similar type. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?void main(){ int a=10, b=20; char x=1, y=0; if(a,b,x,y){ printf("EXAM"); } } XAM is printed Nothing is printed Compiler Error exam is printed XAM is printed Nothing is printed Compiler Error exam is printed 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