/* Compute the size of some fundamental types. */ #include int main(void) { printf("\n"); printf("Here are the sizes of some floating types:\n\n"); printf(" float:%3d bytes\n", sizeof(float)); printf(" double:%3d bytes\n", sizeof(double)); printf("long double:%3d bytes\n", sizeof(long double)); printf("\n"); return 0; }