O
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: 147
- Filed under category C++
Discusssion
Login to discuss.