class Counter { public: // 1 void Count(); // 2 }; int main() { Counter obj; obj.Count(); return 0; } // 3
void Count() { }
void Counter::Count() { }
Login in to like
Login in to comment
or Read more about C++ Quizzes
Login in to like
Login in to comment