#include int main() { printf("\nchar -> %d.", sizeof(char)); printf("\nshort -> %d.", sizeof(short)); printf("\nint -> %d.", sizeof(int)); printf("\nlong -> %d.", sizeof(long)); printf("\nfloat -> %d.", sizeof(float)); printf("\ndouble -> %d.", sizeof(double)); printf("\nlong double -> %d.\n\n", sizeof(long double)); system("pause"); return 0; }