Wednesday, January 30, 2013

union

combine the memory using union. very cool.
union
{
   int a;
   int b;
};

address a and b will be the same. It needs to be careful in using them

No comments:

Post a Comment