Deeply understand the union (common body) and struct of C language
A Union is defined in the following format:
union Common body name
{
Member list
}; //A common body is sometimes called a Union or a Union, which is also the original meaning of the word Union.
Difference between structure and common body: each member of structure will occupy different memory and have no influence on each other ...
Posted by afern03 on Thu, 20 Jan 2022 13:36:24 +0100