Q. The output of this program is
Code:
int a = 10;
void main()
{
int a = 20;
cout << a << ::a;
}
β
Correct Answer: (C)
20 10
int a = 10;
void main()
{
int a = 20;
cout << a << ::a;
}
You must be Logged in to update hint/solution