

MCQOPTIONS
Saved Bookmarks
1. |
What would be the output of the below code? #include <iostream> using namespace std; #define VALUE 10 int main() { int RESULT; RESULT = ++VALUE; cout << RESULT; return 0; } |
A. | 10 |
B. | 11 |
C. | compile time error |
D. | run time error |
Answer» D. run time error | |