C Programming What will be the output of the following program?void main(){ char str1[] = "abcd"; char str2[] = "abcd"; if(str1==str2) printf("Equal"); else printf("Unequal");} Error Unequal Equal None of these. Error Unequal Equal None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming If the two strings are identical, then strcmp() function returns 1 true 0 None of these -1 1 true 0 None of these -1 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 10 0123456789 Infinite loop 0 Syntax error 10 0123456789 Infinite loop 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Unary-operator Division operator Comma operator Assignment operator Conditional operator Unary-operator Division operator Comma operator Assignment operator Conditional operator ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? None of these resume continue skip break None of these resume continue skip break ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff2 fff3 fff4 fff0 fff1 fff2 fff3 fff4 fff0 fff1 ANSWER DOWNLOAD EXAMIANS APP