Computer Science, asked by md6554013, 26 days ago

What is output of below program.
int main()
{
  int a=10;
  int b,c;
  b = a++;
  c = a;
  cout<
  return 0;
}.​

Answers

Answered by vr106367
0

Answer:

The compiler will throw an error because the print statement is incomplete.

Explanation:

Please mark me as brainliest!!!

Similar questions