Vidyalelo
C++ Programming · Q754

C++ miscellaneous

Programming · C++ Programming · question 754

Q754

What will be the output of the following C++ codes? i. #ifndef Exercise_H #define Exercise_H int number = 842; #endif ii. #include #include "exe.h" using namespace std; int main(int argc, char * argv[] ) cout << number++; return 0;

A.
842
Answer
B.
843
C.
compile time error
D.
845

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board