Computer Science, asked by prathameshwankhede0, 3 months ago

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 myd25335
1

Answer:

::a has not been declared

Explanation:

Similar questions