int f(int*a,int b) {
b=b-1;
if (b==0) return 1;
*a =*a +1;
return f(a,b) * (*a);.
}
int main(){
int a=3;
int b=3;
return f(&a,b);
}
Answers
Answered by
1
Answer:
program return with the exit code 25
Similar questions
Environmental Sciences,
6 months ago
Physics,
6 months ago
Biology,
11 months ago
English,
11 months ago
Chemistry,
1 year ago