51. 請問下面程式的輸出為何?

```c
#include
int f(int x) { return x > 0 ? x + f(x-1) : 1; }
int main()
{
printf("%d", f(10));
return 0;
}
```
(A)10
(B)55
(C)56
(D)78

答案:登入後查看
統計: A(0), B(0), C(1), D(0), E(0) #3927535