Defining struct point
and type Point
for it
typedef struct point Point;
struct point {
int x;
int y;
};
Same definitions in one statement
typedef struct point {
int x;
int y;
} Point;
Defining type Point for unnamed struct
typedef struct {
int x;
int y;
} Point;
status | not read | reprioritisations | ||
---|---|---|---|---|
last reprioritisation on | suggested re-reading day | |||
started reading on | finished reading on |