Declare a variable isACustomer, suitable for representing a true or false value.
LANGUAGE: C++
CHALLENGE:
Declare a variable isACustomer, suitable for representing a true or false value.
SOLUTION:
bool isACustomer;
Posted in C++, Learn To Code