#include int main() { char ch; int num1; cout << "Bytes of storage used by a character: " << sizeof(ch) << endl; cout << "Bytes of storage used by an integer: " << sizeof(num1) << endl; return 0; }