int 配列を vector に変換する最も簡単な方法は何ですか? if ステートメントで使用します。
すなわち
int num1[4] = {2, 4, 1, 8};
int num2[4] = {2, 4, 6, 8};
if (testNUM(num1, num2, 4))
cout << "ERROR: num1 and num2 are reported to be the same.\n";
else
cout << "SUCCESS: num1 and num2 are correctly identified "
<< "as different.\n";
testNUM は関数プロトタイプ (BOOL) として宣言されています。
ありがとう、