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.
cの配列をリセットすることに関して質問があります。次のように配列を定義します。
static int hello[5][6] = {{1,2,3,4,5,6},1,2,3,4,5,6},1,2,3,4,5,6},1,2,3,4,5,6},1,2,3,4,5,6}};
次に、各行と行のすべての要素を0としてリセットする方法は?
memset (hello, 0, sizeof(hello));
そうしてみてください:bzero(hello、sizeof(hello));