

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int n = 15; void main() { int n = 5; printf("%d ", n); { int n = 10; } printf("%d", n); } |
A. | 15 5 |
B. | 5 15 |
C. | 10 5 |
D. | 5 10 |
E. | 5 5 |
Answer» F. | |