// Union of char, int and float typedef union { char a; int b; float c; } mixedBag;