How can a '::' operator be used as unary operator?
Answer / subham chaudhary
The scope operator can be used to refer to members of the global namespace. Because the global namespace doesn’t have a name, the notation :: member-name refers to a member of the global namespace. This can be useful for referring to members of global namespace whose names have been hidden by names declared in nested local scope. Unless we specify to the compiler in which namespace to search for a declaration, the compiler simple searches the current scope, and any scopes in which the current scope is nested, to find the declaration for the name.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the main features of c++?
What is null c++?
Why is c++ still best?
write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement
What is size of empty class object
Who was the creator of c++?
What does it mean to declare a member function as virtual?
How to give an alternate name to a namespace?
Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
How we can differentiate between a pre and post increment operators during overloading?
If a header file is included twice by mistake in the program, will it give any error?
How does work in c++?