Recursion in C | 2.1 Basic Concept | Recursive | C Programming Bangla Tutorial for Beginners

preview_player
Показать описание
#algoBhaiya #recursion #function

dsa
easy explaination
clanguage
banglatutorial
programmingforbeginners
Рекомендации по теме
Комментарии
Автор

You can practice from here,
Write a program to display the functional value of
i. f() = display your name
ii. f() = return your age
iii. f(x)=x3+3x+5
iv. f(x, y) = x2+xy - 9
v. f(x, y, z)=x2+2yz-z2
vi. Sum of the first n values
f(x)=x(x+1)/2 Using function.
f(x) = x+f(x-1), where x>0 and f(0)=0 Using recursion.
vii. Sum of the first n squared values
f(n) = n(n+1)(2n+1)/6 Using function.
f(n) = n2+f(n-1), where n>0 and f(0)=0 Using recursion.
viii. Write a function using multiple function
h(x)=x2+5
g(x)=x-2
f(x)=2xg(x)+h(x)-5
ix. Fibonacci Number
f(0)=0, f(1)=1
f(n)=f(n-1)+f(n-2), where n>1

AlgoBhaiya
welcome to shbcf.ru