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

現代のCで返り値に型のある関数でreturn;したらどうなるんだろう!!

zunda

UBだ♪

$ cat return.c
<stdlib.h>
<stdio.h>

int function(void){
return;
}

int main(void)
{
printf("%d\n", function());
return 0;
}
$ gcc return.c && ./a.out && ./a.out && ./a.out
return.c: In function ‘function’:
return.c:5:3: warning: ‘return’ with no value, in function returning non-void
5 | return;
| ^~~~~~
return.c:4:5: note: declared here
4 | int function(void){
| ^~~~~~~~
-198725291
1404641621
1343713621