

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