#include struct Point { int x; int y; }; typedef struct { char* brand; // 동적 할당을 위한 처리 int model; } Vehicle; int main() { struct Point pt; pt.x = 10; pt.y = 5; Vehicle vc; vc.brand = "Ford"; vc.model = 2025; printf("pt.x: %d\n", pt.x); printf("pt.y: %d\n", pt.y); printf("\n"); printf("vc.brand: %s\n", vc.brand); printf("vc.model: %d\n", vc.model); }