/* string.c */ /* 文字列 */ #include int main(void) { char str[]="abc"; /* 文字列リテラルによる初期化 */ puts("str = "); puts(str); return 0; }