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.
どうすれば20回宣言できますか
int p[] = { 1,2,3,4,5}; int p[] = { 6,7,8,9,10}; . . .
20x20 の行列があるとしましょう。各行は上のポインタです
これは、20X20 の 2 次元配列を使用して行うことができます。
int p[][]={{1,2,3,4,5}, {6,7,8,9,10}, {11,12,13,14,15}, ..... ..... }
編集: これを使用して5行目を参照できます:
for(int i=0; i<5; i++) { printf(" %d",p[4][i]); }