In C++, which operator is used for member selection in pointers?
- -> (Arrow)
- . (Dot)
- :: (Scope Resolution)
- N/A
The -> (Arrow) operator is used in C++ to access members of an object or struct through a pointer. For instance, if you have a pointer to a struct ptr and want to access its member x, you can do so using ptr->x.
Loading...
Related Quiz
- When an array is passed to a function, it is always passed by _______.
- Consider enum class in C++11 and above. Which of the following is a true statement about its functionality?
- What feature of C++ templates allows you to provide a specific implementation for particular data types when certain types require a different implementation for optimal performance in a class template?
- For a function whose return type is deduced at the time of its invocation, the keyword ______ is used.
- What is the initial statement in a for loop typically used for?