mstdn.maud.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
The place to express your ❤️ more freely. / あなたの「すき」をもっと自由に書き表すための場所。

Administered by:

Server stats:

344
active users

@Otakan951
struct Coordinate{
int X;
int Y;
};
と宣言すると,

struct Coordinate foo;
foo.X = 50;
foo.Y = 20;

みたいに複数の値(メンバという)を持つ型を作れる。