#include <stdio.h>
// 1 byte = 1 char
typedef struct
{
int id;
char name[32];
} employee;
int main(void)
{
employee e;
int size_in_chars = sizeof(e.id);
printf("%d\n", size_in_chars);
size_in_chars = sizeof(e.name);
printf("%d\n", size_in_chars);
return 0;
}
/*
run:
4
32
*/