

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { int m = 12; float m = 12; printf("%d", m) } |
A. | 12 |
B. | Compilation Error |
C. | 12.000000 |
D. | Runtime Error |
E. | None of these |
Answer» C. 12.000000 | |