A
Q. The output of this program is
Code:
int a = 10;
void main()
{
int a = 20;
cout << a << ::a;
}
void main()
{
int a = 20;
cout << a << ::a;
}
- Correct Answer - Option(C)
- Views: 11
- Filed under category C++
- Hashtags:
Discusssion
Login to discuss.