

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { auto R = 110; const auto int *ptr = &R; printf("%d n", R); } |
A. | Compilation Error |
B. | Garbage value |
C. | Depends on the compiler |
D. | Depends on the standard |
E. | 110 |
Answer» F. | |