だから私は 2D 配列を持っていて、2D 配列の行 'pth' 行を新しい 1D 配列に割り当てたい: 私のコードは次のようになります:
float temp[] = { *aMatrix[p] }; // aMatrix is a 10x10 array
// am trying to assign the pth row
// to temp.
*aMatrix[p] = *aMatrix[max];
*aMatrix[max] = *temp;
float t = bMatrix[p];
bMatrix[p] = bMatrix[max];
上記の宣言の後、temp は aMatrix の p 番目の行のすべての値を含む長さ 10 である必要がありますが、値だけが含まれています。私はそのステートメントのすべての組み合わせを試しましたが、コンパイルエラーしか得られません..
私の質問は、この割り当てを行う正しい方法は何ですか?
どんな助けでも大歓迎です。ありがとう