We Recommend

C++ The Core Language C++ The Core Language
C++: The Core Language is for C programmers transitioning to C++. It's designed to get readers up to speed quickly by covering an essential subset of the language. The subset consists of features without which it's just not C++, and a handful of others that make it a reasonably useful language.


Posted By

yuconner on 08/04/06


Tagged

structures


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

copyleft


Union


Published in: C++ 


Suposse int=2bytes, char=1byte, double=4bytes [BYTE1][BYTE2][BYTE3][BYTE4][BYTE5][BYTE6][BYTE7] [------A------] [----B-----] [--------------C-------------]

  1. union Example {
  2. int A;
  3. char B;
  4. double C;
  5. } ex;

Report this snippet 

You need to login to post a comment.