#include main() { printf("The length of \"Hello\" is %d \n", sizeof("Hello")); printf("Size of char is %d \n", sizeof(char)); // 1 byte printf("\n"); printf("¾ã¼Æ\n"); printf("Size of int is %d \n", sizeof(int)); // 4 bytes printf("Size of unsigned int is %d \n", sizeof(unsigned int)); printf("\n"); printf("Size of short int is %d \n", sizeof(short int)); // 2 bytes printf("Size of unsigned short int is %d \n", sizeof(unsigned short int)); printf("\n"); printf("Size of long is %d \n", sizeof(long)); // 4 bytes printf("\n"); printf("¤p¼Æ\n"); printf("Size of float is %d \n", sizeof(float)); // 4 bytes printf("Size of double is %d \n", sizeof(double)); // 8 bytes printf("Size of long double is %d \n", sizeof(long double)); // 12 bytes }