#include int main(void) { printf("\nSize of fundamental char and int types:\n"); printf(" number of bytes in char : %d\n", sizeof(char)); printf(" number of bytes in short int : %d\n", sizeof(short int)); printf(" number of bytes in long int : %d\n", sizeof(long int)); printf(" number of bytes in long long int : %d\n", sizeof(long long int)); printf("\nSize of floating-point data types :\n"); printf(" number of bytes in float : %d\n", sizeof(float)); printf(" number of bytes in double : %d\n", sizeof(double)); printf(" number of bytes in long double : %d\n\n", sizeof(long double)); return 0; }