A
Q. What should be the output of below program?
Code:
int main()
{
int a=10;
cout<<a++;
return 0;
}
{
int a=10;
cout<<a++;
return 0;
}
- Correct Answer - Option(B)
- Views: 5
- Filed under category C++
- Hashtags:
Discusssion
Login to discuss.