#include #include int main(int argc, char ** argv) { // Print the size (in bytes) for some primitive data types printf("Size of short is %d \n", sizeof(short)); printf("Size of int is %d \n", sizeof(int)); printf("Size of float is %d \n", sizeof(float)); printf("Size of double is %d \n", sizeof(double)); system("pause"); }