#include /* testing the sizes of some types */ int main() { printf("The size of int is %d\n", sizeof(int)); printf("The size of char is %d\n", sizeof(char)); printf("The size of float is %d\n", sizeof(float)); printf("The size of double is %d\n", sizeof(double)); }