

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