50
) ------------- operator resolves ambiguity between local & global variables.
a) - b) c)? d):
Answers
Answered by
1
Answer:
Could you please make the question clear to understand
I understood this
#include <iostream>
using namespace std;
int x = 5;
int main()
{
int x = 1;
cout << "The variable x: " << x << endl;
}
#include <iostream>
using namespace std;
int x = 5;
int main()
{
int x = 1;
cout << "The variable x: " << x << endl;
}
Please mark it as the brainiest if it helped you
Similar questions