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

文字列リテラルはつながるの件

$ cat test.c; gcc test.c && ./a.out
<stdio.h>
place "world"
void main(void){puts("Hello, " place);}

Hello, world

zunda

.rodataセクションに文字列が格納されるみたいよね。文字列リテラルはそこへのポインタとして扱われるんだとおもー

$ objdump -s a.out
:
Contents of section .rodata:
2000 01000200 48656c6c 6f2c2077 6f726c64 ....Hello, world
2010 00 .
: