C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 0, 2 2, 0 2, 4 4, 4 2, 2 0, 2 2, 0 2, 4 4, 4 2, 2 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 II and IV III and IV I and III II and III I and II II and IV III and IV I and III II and III I and II ANSWER DOWNLOAD EXAMIANS APP
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 None of these. Unequal Equal Error None of these. Unequal Equal ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }} None of These GOOD BAD Compiler Error GOOD None of These GOOD BAD Compiler Error GOOD ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? 2 -1 Program do no return a value. 1 2 -1 Program do no return a value. 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Acts before compilation Takes care of include files All of these Takes care of conditional compilation Takes care of macros Acts before compilation Takes care of include files All of these Takes care of conditional compilation Takes care of macros ANSWER DOWNLOAD EXAMIANS APP