#include /* structure 'thing' */ struct thing { int test; int dumb; }; /* alias structure thing to 'thang' */ typedef struct thing thang; main() { /* variables */ thang that; /* body */ that.test = 1; printf("%d\n", that.test); /* not necessary, but a good habit */ return 0; }