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 次元配列がありますarr2[3][3]。arr2の最初の行を新しい配列に格納したい場合は、 を呼び出しますarr1[3]。どうすればよいでしょうか?
arr2[3][3]
arr2
arr1[3]
やってみint arr1[] = arr2[0]ました。しかし、うまくいきません。
int arr1[] = arr2[0]