#include int main(){ using std::cout; cout << "The size of a bool is:" << sizeof(bool) << " bytes.\n"; return 0;} The size of a bool is:1 bytes.