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