Computer Science, asked by sakshipatil9400, 10 months ago

50
) ------------- operator resolves ambiguity between local & global variables.
a) - b) c)? d):​

Answers

Answered by likhitadasari
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