Which procedure repeats many times as long as a set of condition is fulfilled
Answers
Answered by
1
Answer:
Recursive procedures
Explanation:
I hope you are looking for self repeating procedures . Usually we have an exit criteria to come out of the loop.
eg
int recursiveFunction(int x)
{ int sum=0;
if(x == 1)
return 1;
else
sum += recursiveFuntion(x-1);
}
Similar questions
Social Sciences,
5 months ago
Chemistry,
5 months ago
Science,
5 months ago
Math,
10 months ago
Social Sciences,
1 year ago
English,
1 year ago