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);} 1 -1 1 1 -1 complier error 1 -1 -1 1 -1 1 1 -1 complier error 1 -1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} hello garbage value hello 5 Error None of These hello garbage value hello 5 Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? real float double int char real float double int char ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ struct xx { int x=3; char name[] = "hello"; }; struct xx *s = malloc(sizeof(struct xx)); printf("%d", s->x); printf("%s", s->name); } None of these Compiler Error 3 hello Linking error None of these Compiler Error 3 hello Linking error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 9 None of these. 10 11 9 None of these. 10 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} 2 None of These 0 Garbage Value 2 None of These 0 Garbage Value ANSWER DOWNLOAD EXAMIANS APP