Pointer to union
Pointer to union is as same as pointer to structure. If you have confusion about pointer to structure, I suggest you to read Pointer to structures first and then continue reading. Lets see how pointer to union works. union Student // name of the union Student { double phone; // member variable long for phone … Continue Reading….