InterviewSolution
Saved Bookmarks
| 1. |
#include <stdio.h>int main(){int a = 10, b = 20, c = 30;if (c > b > a)printf("TRUE");elseprintf("FALSE");return 0;}(A) TRUE(B) FALSE(C) Compiler Error(D) Output is compiler dependent |
| Answer» | |