How much memory space does an integer occupy ...

diddy_19 Posted messages 28 Status Membre -  
 kamla -
Hello,
I want to know how much memory space an integer, a real number, and a character occupy? Thank you in advance.
Configuration: Windows XP Internet Explorer 6.0

5 réponses

diddy_19 Posted messages 28 Status Membre 24
 
Thank you Fiat, can it be in memory case? If yes, can you give me the answer? Thanks a lot.
7
loupius
 
In C, it's easy:
 printf("\nchar=%d int=%d double=%d float=%d\n", sizeof(char), sizeof(int), sizeof(double), sizeof(float));
In C, everything is easy ;-)
Good luck.
0
kamla
 
thank you loupis
2