Is there a way print a list of data types and making a loop to
find the size of each data types, with out manually typing the name of
the data type and typing 'sizeof(...)' for each of them?
Maybe using an array with a loop but i'm not sure how to use the char or string
names and to insert the name into the 'sizeof' operator to find the byte and print
it to the user.
the types in question:
char, unsigned char, signed char, int , unsigned int, signed int, short int,
unsigned short int, signed short int, long int, signed long int, unsigned long int, float, double, long double, and wchar_t.