Q. What should be the output of below program?
Code:
int main()
{
int a=10;
cout<<a++;
return 0;
}
β
Correct Answer: (B)
10
int main()
{
int a=10;
cout<<a++;
return 0;
}
You must be Logged in to update hint/solution