MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program? #include<stdio.h> int get(); int main() { const int x = get(); printf("%d", x); return 0; } int get() { return 20; } |
| A. | Garbage value |
| B. | Error |
| C. | 20 |
| D. | 0 |
| Answer» D. 0 | |