Defining struct point
and type Point
for it
typedef struct point Point;
struct point {
int x;
int y;
};
If you want to change selection, open original toplevel document below and click on "Move attachment"
Parent (intermediate) annotation
Open it Type definitions for structures 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; Summary
status | not read | | reprioritisations | |
---|
last reprioritisation on | | | suggested re-reading day | |
---|
started reading on | | | finished reading on | |
---|
Details