1.

Guess the output of the following program ? #include<stdio.h> int main() { int a = 100, b = 200, c = 300; if(!a >= 500) b = 300; c = 400; printf("%d,%d,%d",a, b, c); return 0; }

A. 100,200,400
B. 100,300,400
C. 100,200,300
D. 100,300,300
Answer» B. 100,300,400


Discussion

No Comment Found