Skip to main content
✏️ Code CompletionC C Medium+20 XP

Typedef Struct

Complete the typedef to create a Point type.

✏️ Fill in the blank
___ struct { int x; int y; } Point;

✏️ Type the missing code: