Computer Science, asked by jayseelan625, 3 months ago

#include <stdio.h>
int fun(int n){
if(n!=0) {
return n - fun(n-5);
} else {
return n;
}
}
int main() {
int n = 10, z;
z= fun(n);
printf("%d", z);
}​

Answers

Answered by avinav170
0

Answer:

what do you mean I don't understand

Similar questions