C Programming Language Part 12 in Hindi | Recursion function in C | Factorial program in C | PremnArya | PN Arya | Prem Sir
About this video:
This video explains about Programming in C Language in Hindi. Each topic explained with a programming example in Hindi.
The following Concepts Covered in this video:
1. Recursion
2. Factorial Program
Recursion:-
Recursion is a process, where a function calls itself again and again.
Example;
main( )
{
Printf(“This is an example of recursion\n”);
main( );
}
Output:-
This is an example of recursion
This is an example of recursion
This is an example of recursion
.
.
.
.
.
.
.
n
►Follow us our social link for regular updates:
Facebook Page: https://www.facebook.com/premnarya10
Twitter: https://twitter.com/premnarya10
Instagram: https://www.instagram.com/premnarya10/
Comments