#include void main () { int a = 5; long b = 657678894; unsigned c = 58; char d = 'h'; float e = 6.87; double f = 0.234567; long double g = 78.3454; bool h = true; cout << "The value of int = " << a << endl; cout << " The byte size of int is " << sizeof (a) << "bytes." << endl; cout << "The value of long = " << b << endl; cout << " The byte size of long is " << sizeof (b) << "bytes." << endl; cout << "The value of unsigned = " << c << endl; cout << " The byte size of unsigned is " << sizeof (c) << "bytes." << endl; cout << "The value of char = " << d << endl; cout << " The byte size of char is " << sizeof (d) << "bytes." << endl; cout << "The value of float = " << e << endl; cout << " The byte size of float is " << sizeof (e) << "bytes." << endl; cout << "The value of double = " << f << endl; cout << " The byte size of double is " << sizeof (f) << "bytes." << endl; cout << "The value of long double = " << g << endl; cout << " The byte size of long double is " << sizeof (g) << "bytes." << endl; cout << "The value of bool = " << h << endl; cout << " The byte size of bool is " << sizeof (h) << "bytes.\n\n"; cout << "Char - " << d << " , ASCII - " << (int)d << endl; cout << "ASCII - " << a << " , Char - " << (char)a << "\n\n"; }