What is the value of the variables i and j after the for loop completes.
int i = 9;int &j = i;For (j = 0; j < 10; j++) ;
这个怎么做啊!