填空题

下列程序的输出结果是 【12】 。 #include <iostream> using namespace std; int main() { int i=5; int &r=i; r=7; cout<<i<<end1; return 0; }

【参考答案】

G