次のコードがあります。
typedef struct {
double x, y;
} point_t ;
typedef struct {
point_t a, b, c;
} triangle_t;
int read_point(point_t * const point) {
int status = scanf(" (&lf,&lf)", &point_t.x, &point_t.y);
return(status);
}
ユーザーが三角形の頂点 (ポイント a、b、c) に入力する x 座標と y 座標を読み取ろうとしています。 .
タイプ名は使用できません。
どうしたの?