Printf ("the size of int is %d.\n", sizeof(int)););
Printf(" long int's size is %d.\n ",sizeof(long int)););
As you can see, in vc, both int and long int are 4 bytes.
I hope I can help you.