What is output of below program.
int main()
{
int a=10;
int b,c;
b = a++;
c = a;
cout<
return 0;
}.
Answers
Answered by
0
Answer:
The compiler will throw an error because the print statement is incomplete.
Explanation:
Please mark me as brainliest!!!
Similar questions