What will be the output of the following C++ code? int a=7,b=8; cout<<”a+b”;
a. 15
b. 7
c. 8
d. a+b
Answers
Answered by
1
Answer:
Question 1 :- what will be the output of the following C++ code? int a=7,b=8; cout<<"a+b";
Answer 1 :- A) 15
Explanation:
cout<<"a+b";
="a+b"
="7+8"
="15" Ans
Similar questions