Can integers be stored in real variables?
In C language, real variables are operated with double type, which takes up 8 bytes, and int type takes up 4 bytes, so it is ok to put 4 bytes into 8 bytes. On the other hand, it is not enough to put double in int (8 bytes can't fit into 4 bytes).