#include #include struct toto { int a; char b; char c; }; typedef struct toto toto; int main(void) { printf("%d\n", sizeof(toto)); }