Struct declaration NOT sufficient?
Having the following C code: struct Point2_s; struct Point1_s{ int x; int y; Point2_s P2; } Point1; struct Point2_s{ int x; int y; } ; int main() { … return 0; } I’m getting an error: unknown type name ‘Point2_s’ Can anyone can please explain me WHY it doesn’t work? Why doesn’t the struct Point2_s… Read More Struct declaration NOT sufficient?