C Programming If the two strings are identical, then strcmp() function returns -1 1 true None of these 0 -1 1 true None of these 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming In an expression involving || operator, evaluationI. Will be stopped if one of its components evaluates to falseII. Will be stopped if one of its components evaluates to trueIII. Takes place from right to leftIV. Takes place from left to right I and II II and III II and IV III and IV I and III I and II II and III II and IV III and IV I and III ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");} 12PP345 None of These Compiler Error 12PP 12PP345 None of These Compiler Error 12PP 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 exam is printed Compiler Error Nothing is printed XAM is printed exam is printed Compiler Error Nothing is printed ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0, j=0; if(i && j++) printf("%d..%d", i++, j); printf("%d..%d", i, j);} 0..1 1..1 1..0 0..0 0..1 1..1 1..0 0..0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); Syntax error Infinite loop 10 0123456789 0 Syntax error Infinite loop 10 0123456789 0 ANSWER DOWNLOAD EXAMIANS APP