Vidyalelo
C++ Programming · Q269

C++ miscellaneous

Programming · C++ Programming · question 269

Q269

What will be the output of the following C++ code? #include #include using namespace std; int main() int a = 5; any var = a; cout<<var<<endl; return 0;

A.
5
B.
Compile-time error
Answer
C.
Run-time error
D.
Nothing is printed

Answer: Option B

Solution

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