Can RAM handle different data type sizes?

Posted by tstbu on Stack Overflow See other posts from Stack Overflow or by tstbu
Published on 2010-05-06T14:26:43Z Indexed on 2010/05/06 14:38 UTC
Read the original article Hit count: 120

Filed under:
|

int, char and bool usually have different sizes. Where int>char>bool, I suppose.

  • But does the RAM even support this?
  • How is it built up?
  • Can it take advantage of bool being only 1 byte and store it in a small "register"?

© Stack Overflow or respective owner

Related posts about c++

Related posts about ram