int inc(int n) { if (n <= 1) return n+1; else return 1 + inc(n-1); } int main(void) { return inc(9); } Call should reference to the sub term, but it references the ...
Some results have been hidden because they may be inaccessible to you
Show inaccessible results