mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

キモいしさすがに通らなかったw

$ cat hello.c ; gcc hello.c
<stdio.h>

void main()
int argc;
char *argv[];
{
if (argc > 1)
{
printf("%s\n", argv[1]);
}
}
hello.c: In function ‘main’:
hello.c:5:7: error: declaration for parameter ‘argv’ but no such parameter
5 | char *argv[];
| ^~~~
hello.c:4:5: error: declaration for parameter ‘argc’ but no such parameter
4 | int argc;
| ^~~~

zunda

K&Rかんぜんにわすれてた。ヌマンカッタ。

$ cat hello.c ; gcc hello.c && ./a.out 'Hello, World!'
<stdio.h>

void main(argc, argv)
int argc;
char *argv[];
{
if (argc > 1)
{
printf("%s\n", argv[1]);
}
}
Hello, World!