私がプログラムしている場合:未使用の関数の戻り値はどうなりますか?
#include <iostream>
using namespace std;
int TestIntReturn(int &x, int &y)
{
x = 1000;
y = 1000;
return x+y;
}
int main()
{
int a = 1;
int b = 2;
cout << a << " " << b << endl;
TestIntReturn(a,b);
cout << a << " " << b << endl;
}
それが未使用であることからTestInReturn(a,b)
の戻り値に何が起こるかを?
あなたの質問には答えられませんが、スタイルに関しては、あなたは 'namespace stdを使用する 'ことを再考したいかもしれません。なぜ、私のコードに「using namespace std」を使用するべきですか?(http://www.parashift.com/c++-faq-lite/using-namespace-std.html) – DavidRR