If an integer occupies 4 bytes and a character occupies 1 byte of memo
![]()
Practice Structures, Unions, Enums – If an integer occupies 4 bytes and a character occupies 1 byte of memory, each element of the following structure would occupy how many bytes?
struct name {
int age;
char name[20];
}