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