

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code? #include <stdio.h> void main() { int p = 15; if (true); printf("Hey... Hellow..."); } |
A. | Hey.. |
B. | Hellow... |
C. | 15 |
D. | true |
E. | Compilation Error |
Answer» F. | |