大家帮个忙好吗 英文的C语言题目 !小弟英文不行谢谢啦!
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++) ;
这个怎么做啊!
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++) ;
这个怎么做啊!