typedef in C — a practical guide to C typedef with clear examples you can reuse in real projects.
C Programming Tutorial Series (62/102). Prefer one article? Read the complete C programming tutorial.
Short description
Common for struct tags and function pointer types.
typedef
typedef struct Point {
int x;
int y;
} Point;
Point p = {0, 0};