0% found this document useful (0 votes)
18 views12 pages

Recursion: Done by

The document discusses recursion in C programming and provides examples of using recursion to find the factorial of a number, find the greatest common divisor, generate a Fibonacci series, reverse characters, and find powers.

Uploaded by

asdasd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views12 pages

Recursion: Done by

The document discusses recursion in C programming and provides examples of using recursion to find the factorial of a number, find the greatest common divisor, generate a Fibonacci series, reverse characters, and find powers.

Uploaded by

asdasd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 12

RECURSION

DONE BY:

KARTHICKPRANAV(20PW
14)

VIJAY KRISHNA
D(20PW40)
WHAT IS RECURSION?
Recursion in C Programing is
calling a function inside the same
function.
1.
C program to find the factorial
of a given number using RECURSION
2.
C Program to find the Greatest
Common Divisor(GCD) using
recursion
3.
Generating Fibonacci Series using
RECURSION
4.
Program to Reverse ‘N’
Characters using RECURSION.
5.
Program to find power(x , y)
, that would compute yth
power of x
where x is double and N is
int.

You might also like