Advertisement
beeradmoore

DataSizes - Obj-C - iPhone 3GS

Nov 14th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. Primitive sizes:
  2. The size of a char is: 1.
  3. The size of a short is: 2.
  4. The size of a int is: 4.
  5. The size of a long is: 4.
  6. The size of a long long is: 8.
  7. The size of a unsigned char is: 1.
  8. The size of a unsigned short is: 2.
  9. The size of a unsigned int is: 4.
  10. The size of a unsigned long is: 4.
  11. The size of a int16_t is: 2.
  12. The size of a int32_t is: 4.
  13. The size of a int64_t is: 8.
  14. The size of a uint16_t is: 2.
  15. The size of a uint32_t is: 4.
  16. The size of a uint64_t is: 8.
  17. The size of a float is: 4.
  18. The size of a double is: 8.
  19. The size of a Float32 is: 4.
  20. The size of a Float32Point is: 8.
  21. The size of a Float64 is: 8.
  22. The size of a Float80 is: 10.
  23. The size of a Float96 is: 12.
  24. The size of a float_t is: 4.
  25. The size of a double_t is: 8.
  26.  
  27. Ranges:
  28. CHAR_MIN: Ä.
  29. CHAR_MAX: .
  30. SHRT_MIN: -32768.
  31. SHRT_MAX: 32767.
  32. INT_MIN: -2147483648.
  33. INT_MAX: 2147483647.
  34. LONG_MIN: -2147483648.
  35. LONG_MAX: 2147483647.
  36. ULONG_MAX: 4294967295.
  37. LLONG_MIN: -9223372036854775808.
  38. LLONG_MAX: 9223372036854775807.
  39. ULLONG_MAX: 18446744073709551615.
  40. FLT_MIN: 0.000000.
  41. FLT_MAX: 340282346638528859811704183484516925440.000000.
  42. MAXFLOAT: 340282346638528859811704183484516925440.000000.
  43. DBL_MIN: 0.000000.
  44. DBL_MAX: 17976931348623157081452742373170435679807056752584499659891747680315726078002853876058955863276687817154045895351438246423432132688946418276846754670353751698604991057655128207624549009038932894407586850845513394230458323690322294816580855933212334827479.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement