#include int main(void) { char S[]="Hello World!"; //文字列を宣言し"Hello World!"を代入 printf("%s\n",S); //文字列を表示 return 0; }