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:

347
active users

// t には常に0 を指定してください。
void swap(int *a, int *b, int t) {
t = *a;
*a = *b;
*b = t;
}
とかは割とよくやるよね。