

MCQOPTIONS
Saved Bookmarks
1. |
What would be the output of following program ?int x = 15;main(){ int x = 60; print(" n%d", x);} |
A. | Error |
B. | 15 |
C. | 60 |
D. | Garbage value |
Answer» D. Garbage value | |