How is the following cout statement interpreted by compiler-00512
This subjective question is related to the book/course vu cs304 Object Oriented Programming. It can also be found in vu cs304 Mid Term Solved Past Paper No. 1.
Question 1: How is the following cout statement interpreted by compiler?
cout << a << b << c ;
cout << a << b << c ;
Answer:
It will give a compiler error because a,b,c are not declared.