1.

What will be the output of the program? #include int main() { int x=55; printf("%d, %d, %d\n", x<=55, x=40, x>=10); return 0; }

A. 1, 40, 1
B. 1, 55, 1
C. 1, 55, 0
D. 1, 1, 1
Answer» B. 1, 55, 1


Discussion

No Comment Found