using namespace std; #include int main () { cout << sizeof '5' << endl; cout << sizeof (5) << endl; cout << sizeof (5.0) << endl; return 0; }