Computer Science, asked by kalpeshg8507, 10 months ago

Which procedure repeats many times as long as a set of condition is fulfilled

Answers

Answered by ghulamsarvar
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