How much memory space does an integer occupy ...

diddy_19 Posted messages 28 Status Member -  
 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 answers

  1. diddy_19 Posted messages 28 Status Member 24
     
    Thank you Fiat, can it be in memory case? If yes, can you give me the answer? Thanks a lot.
    7
    1. 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
    2. kamla
       
      thank you loupis
      2