Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のケース 2、3、4、5 で初期化はどのように行われますか。1にゴミが入ります。
char x[16]; char x[16] = {0}; char x[16] = {0, }; char x[16] = {1}; char x[16] = {1, };
配列でブレース初期化子構文を使用する場合、初期化子リストに記載されていない追加要素はゼロで初期化されます。
@フィリップは正しいです。
簡単なテストでこれが得られました:
http://codepad.org/DsOtXIYg
ところで、これはテスト コードを実行するための優れたリンクです。