下面C++代码执行以后输出的是( )。
int rc=5;
int main()
{
int rc;
cout << ++rc << endl;
cout << endl;
return 0;
}
0
1
6
不确定