

MCQOPTIONS
Saved Bookmarks
1. |
What will be output if you will compile and execute the following c code? #includeint main(){int i=10;static int x=i;if(x==i)printf("Equal");else if(x>i)printf("Greater than");elseprintf("Less than"); return 0;} |
A. | equal |
B. | less than |
C. | greater than |
D. | compiler error |
Answer» E. | |