/******************************************************* * * * * * CSCI 1470 * * Machine Problem: MP1A * * Purpose: Program that displays the number * * of bytes in certain data types. * *******************************************************/ #include using namespace std; int main(void) { // Display the datatype and the number of bytes allocated cout << "Datatype" << " Number of Bytes" << endl; cout << endl; cout << "CHAR..................." << sizeof(char) << endl; cout << endl; cout << "SIGNED CHAR............" << sizeof(signed char) << endl; cout << endl; cout << "UNSIGNED CHAR.........." << sizeof(unsigned char) <