(sizeof Operator) Write a program that uses the sizeof operator to determine the sizes in bytes of the various data types on your computer system. Write the results to the file data-size.dat, so that you may print the results later. The results should be displayed in two-column format with the type name in the left column and the size of the type in right column, as in:
char 1unsigned char 1short int 2unsigned short int 2int 4unsigned int 4long int 4unsigned long int 4float 4double 8long double 10
[Note: The sizes of the built-in data types on your computer might differ from those listed here.]
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.