帮忙看一道选择题。。。。
Given the code-fragment:|
| int MyFunction(int);
|
| int main(void)
| {
| int nA=3;
| :
| :
| nA=MyFunction(nA);
| printf(“nA=%d”,nA);
| return(0);
| }
|
| int MyFunction(int nA)
| {
| return(4);
| }
|
|What will be printed to the screen?
|
|A : nA= 3
|B : nA= 4
|C : an error-message
这题为啥最终的选择是B?最终的函数return括号里为4是什么意思?谢谢