Recursive function in C to compute a power b

  Рет қаралды 13,174

Satpute Academy

Satpute Academy

Күн бұрын

Пікірлер: 15
@fero___3005
@fero___3005 2 жыл бұрын
Wonderful explanation
@bossysmaxx
@bossysmaxx 6 жыл бұрын
hey man What type of Pen or Notebook you're USing Tell me
@mithunshaha4342
@mithunshaha4342 6 жыл бұрын
what a concept it is!
@mrSolo295
@mrSolo295 6 жыл бұрын
Return to whome?? If we return to main() when b==1 then only 3 will go. Also after when b==1 and return a; is executed y not the third statement is not executed because their is only if part and not else. Im really confused , i will b thankfull if u could help me out.
@ankurkushwaha21
@ankurkushwaha21 7 жыл бұрын
sir, can u please upload for fibonacci series.
@ADH_01
@ADH_01 3 жыл бұрын
Thanks sir...
@Abhijeetkumar314
@Abhijeetkumar314 6 жыл бұрын
nice explanation which notebook r u using?
@tuhinprasad6508
@tuhinprasad6508 8 жыл бұрын
This video helped !! Thanks
@gzmgzm4645
@gzmgzm4645 6 жыл бұрын
Help ! how to solve ? 2. What does f(5) return? What does the function do? int f(int n){ if(n
@Niamat-w9s
@Niamat-w9s 4 жыл бұрын
thanks
@aayush5474
@aayush5474 6 жыл бұрын
What notebook is that?
@bossysmaxx
@bossysmaxx 6 жыл бұрын
i also wanted to know?
@ogendrayadav5503
@ogendrayadav5503 3 жыл бұрын
it is not work for ZERO(0) power.
@ogendrayadav5503
@ogendrayadav5503 3 жыл бұрын
best idea is given below #include int power(int n1 , int n2); int main() { int x, n,num; printf("Enter base number: "); scanf("%d", &x); printf("Enter Power number: "); scanf("%d", &n); num=power(x,n); printf(" %d^%d = %d", x, n,num ); return 0; } int power(int n1, int n2) { if(n2 == 0) return 1; return (n1*power(n1, n2-1)); }
@ramutry
@ramutry 6 жыл бұрын
It is not work for negative powers👎
C Program for Queue(FIFO) Data Structure
27:36
Satpute Academy
Рет қаралды 4,1 М.
recursion finding factorial of a number
7:10
Satpute Academy
Рет қаралды 59 М.
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН
Recursion in C
11:12
Neso Academy
Рет қаралды 965 М.
Exponentiation - Calculate Pow(x,n) using recursion
8:04
mycodeschool
Рет қаралды 168 М.
Check If A Number Is Prime Using Recursion | C Programming Example
11:05
Portfolio Courses
Рет қаралды 6 М.
You have 30 seconds. Viral riddle from The 1% Club
8:42
MindYourDecisions
Рет қаралды 46 М.
How to STUDY so FAST it feels like CHEATING
8:03
The Angry Explainer
Рет қаралды 2,2 МЛН
Towers of Hanoi: A Complete Recursive Visualization
21:13
Reducible
Рет қаралды 501 М.
How To Actually Achieve Your Goals in 2025 (Evidence-Based)
15:15