Structures in C — a practical guide to C structures with clear examples you can reuse in real projects.
C Programming Tutorial Series (56/102). Prefer one article? Read the complete C programming tutorial.
Short description
Structs model records like Student, Point, or Order.
Struct
struct Point {
int x;
int y;
};
struct Point p = {3, 4};