I have found out that unions are classes in c++.
If you declare a class as a union:
union Foo // Declare union type
{
char ch;
int func(int a);
};
Will the size of the union be 4 or 1 (assuming char size of 1 and pointers size of 4 ) ?
