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;
Declare a variable isACustomer, suitable for representing a true or false value.
bool isACustomer;