4.Write the output of the following program
#include <iostream.h>
int a=20;
void main()
{
int a=10;
cout<<"value of a is:"<<a;
cout<<"now value of a is:"<<::a;
}
Answers
Answered by
1
Answer:
::a has not been declared
Explanation:
Similar questions