演習9ー1
問: List9-3の配列strの宣言を次のように書きかえたプログラムを作成し、実行結果を考察せよ。
chat str = [] = “ABC\0DEF”;
// Ex0901.c
#include <stdio.h>
int main(void)
{
char str[] = "ABC\0DEF";
printf("文字列strは\"%s\"です。\n", str);
return 0;
}
コメント
ヌル文字以降が表示されていない・・・だと・・・?
書籍情報
コメント