SubhanUllah Posted October 28, 2022 Report Posted October 28, 2022 typedef struct { int x; int y; } point_t; point_t some_func(void) { point_t pt; pt.x = 0; pt.y = 0; return pt; }
Recommended Posts