Question: C++ programming. Create a new project to compile multiple files, the main and a class. Create a class named counter with a private integer variable
C++ programming.
Create a new project to compile multiple files, the main and a class. Create a class named "counter" with a private integer variable named countNo, an empty constructor that initializes countNo to 0 and two public functions, one named increase that increments countNo by 1 and one called countVal that returns the value of countNo. In a main() function create an instance of the counter class, and in a for loop that runs 100 times, increment the countNo value in that class instance and print it. Show the code.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
