MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> int main() { register auto int num = 12; num = 13; printf("%d n", num); } |
| A. | 12 13 |
| B. | 13 12 |
| C. | 12 |
| D. | 13 |
| E. | Compilation Error |
| Answer» F. | |