🎴 Flashcard Mode

C++ Fundamentals

Card1 / 25
Mastered0
Review0
QuestionClick to flip

A static member function can change

AnswerClick to flip back
A
only static members of class instances
💡 Explanation:

Static member functions in C++ can access and modify only static data members of the class, not instance-specific members. This is because static functions are not bound to any particular object instance.

Change Mode