Revision as of 19:47, 13 May 2024 by Admin (Created page with "* 3 data types : '''long int''', '''short int''','''float'''. * On my computer : ** long int : 4 bytes ** short int : 2 bytes ** float : 4 bytes * we can not use 'int' or 'float' as a variable's name.")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Exercise


ABy Admin
May 13'24

Answer

  • 3 data types : long int, short int,float.
  • On my computer :
    • long int : 4 bytes
    • short int : 2 bytes
    • float : 4 bytes
  • we can not use 'int' or 'float' as a variable's name.
00