1.

 What would be the output of the following program? (C programming) #include”stdio.h” main() { int a, b=5; a=b+NULL; printf(“%d”, a); }

A. 6
B. 5
C. 5 5
D. None
Answer» C. 5 5


Discussion

No Comment Found