#include #include typedef int new_int_name; typedef struct _temp_name { new_int_name a; int b; float c; char d; } new_struct_name; int main() { printf("%d\n", sizeof(new_struct_name)); printf("%d\n", sizeof(new_int_name)); return 0; }