#include <stdio.h>
struct employee
{
int id;
char name[32];
};
int main(void)
{
size_t size_in_byte = sizeof(((struct employee *) 0)->id);
printf("%zu\n", size_in_byte);
size_in_byte = sizeof(((struct employee *) 0)->name);
printf("%zu\n", size_in_byte);
return 0;
}
/*
run:
4
32
*/