Computer Science, asked by DebrajDebnath, 1 year ago

what is recursion in c

Answers

Answered by 1159pkumar
2

Recursion is a programming technique that allows the programmer to express operations in terms of themselves. In C, this takes the form of a function that calls itself. A useful way to think of recursive functions is to imagine them as a process being performed where one of the instructions is to "repeat the process".


1159pkumar: 14 is my age
DebrajDebnath: ooooo .brother my age is also 14.
DebrajDebnath: tomorrow is my birth
DebrajDebnath: birthday
1159pkumar: Happy birthday
DebrajDebnath: oooo thanks brother
DebrajDebnath: brother please follow me on brainly i have two accounts can you follow those two account
1159pkumar: Yes
DebrajDebnath: thanks
1159pkumar: Okkkkk
Answered by smita24
2

recursion in c

Recursion is the process of repeating items in a self-similar way.

In programming languages, if a program allows you to call a function inside the same function, then it is called a recursive call of the function.

The C programming language supports recursion, i.e., a function to call itself.


DebrajDebnath: sister can you tell me what is your age
Similar questions