

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