Recursive Functions: Recursion In C: C Tutorial In Hindi #21

preview_player
Показать описание
In this series of C programming tutorial videos, I have explained you everything you need to know about C language. I hope you are enjoying this C course in Hindi.

Best Hindi Videos For Learning Programming:

Follow Me On Social Media
Рекомендации по теме
Комментарии
Автор

Aapne is series ke kitne videos dekhe?
Is video mei maine aapko recursions ke baare mei bataya. Ek baat batana chahunga ki recursions hamesha achhe nahi hote hain. Aisa isliye kyunki ho sakta hai ki recursions ki madad se kisi problem ko solve karte waqt aap ek hi function call ko multiple time call karein. Example hai fibonacci series jaha aapko recursions se solve karne mei zyada time lagta hai aur for loop se kaam aasani se ho jaata hai. Mai is baare mei detail mei aage cover karunga. Keep coding, keep loving and keep watching this series!

CodeWithHarry
Автор

Major life lesson from this video: career ka soch k dimaag kharab mat karo... avi k liye C seekh lo...
Needed to hear this so badly.... Thank you Harry bhai..

sonalipanda
Автор

THIS QUESTION COMES IN MY EXAM I GOT 15 MARKS BY THIS QUESTION ONLY WHICH HELPED ME TO PASS IN THE EXAM THANK U SO MUCH

harshranjan
Автор

dear sir your course is not just health but also tasty (dosa) too so that comes around a complete package thank you sir

jeeneshagarwal
Автор

I was having little problems regarding recursions but after watching your videos my problem gets resolved. You gave me a practical and best understanding of this topic over this whole you tube platform. THANK YOU.

yashsharma
Автор

I tried to learn from books, watched many tutorials but I was stucked. After watching #CodeWithHarry I got all the knowledge regarding programming in just a short period and feeling too confident. Thank u Harry Sir. After watching C, I will finish all the other tutorials of u. Sir, Thanks for making the base easy. Now I can understand the bookish language. ❤️🙂 Sir, the positive thing is that when u explain in Hindi it becomes so flexible, because Hindi me bhot jldi or jada der k liye explanation clear rhta h. Waise bhi English me baat bhot bounded si ho jti h.

mahimaprajapati
Автор

I always ignored recursive functions due to lack of examples in textbooks but bhaiya made it so simple..Thank you ..!!

DevendraSingh-zrzq
Автор

Harry, aaj tak comments nahi ki thi par aaj kar raha hoon.
Masala dosa vala example diya ! Dekhake Bhook bhi lagi aur topic bhi sikh gaya . And sikhate wakt joke acche karte ho bhai.
Wo managers ka example awesome tha.. 😂
Kya bolu. Ye course beginning and repeated logonko bahot hi achha hain.
You are not fast ok ! Course aaram se and bahot hi achhese chal raha hain..
All the best .👍
KEEP it up++;
And most imp thing ki bich me JOKES marte rehana, muze to bahot maza aaya.
sach kahu to aise course ki price honi chahiye thi, par aap free me padha rahe ho..
THANK YOU SO MUCH.!!👍😇🤗🌟🌟🌟🌟🌟
THANK U ..😇🤗.

sarveshdevrukhkar
Автор

I respect u alot Bahut faida mil raha he apke in videos se.... God bless u....

kashikhanabidi
Автор

recursion function of the Fibonacci series
#include <stdio.h>
int fib(int num){
if(num == 0){
return 0;
}
else if(num == 1){
return 1;
}
else{
return (num = (num-1) + (num -2));
}}
int main() {
int i;
printf("enter the value \n");
scanf("%d", &i);
printf("the Fibonacci series is as follows:\n");
for(int j=0;j<i;j++){
printf(" %d ", fib(j));
}
return 0;
}

zubaidasehnaz
Автор

Thanku sir, but if anyone can't understand after watching this directly to go naresh it channel you will be better understand about recursion thanku....

sahil-ldbu
Автор

Harry bhai emotional Kat diya :)
3rd point of function us moment hogya yarr 🙂
Thank you bro sahi kaha aaj pe dhyan beetain kal par nahi 🙂:)
Such a good teacher 🛐

kabirsingh
Автор

19:50 that stress on else was just amazing

gulshankapoor
Автор

int(good)
{
printf("GOOD WAY OF EXPLAINING");
return 0;
}

we like it

KRISHANYADAV-vupp
Автор

dosa vala example badhiya tha attention khichne ke liye

janhvinarayan
Автор

Initially in this video in didn't understand recursions & iteration but when sir you explained the dosa example that was simple to understand and i never forget ❤️

amangwari
Автор

Dosa wala bariya example tha Bhaiya.
Thanks Harry Bhaiya

royfamily
Автор

Amazing
It is a tough topic
I got it when your code worked
then I worked it out
Nice coaching

tejassharma
Автор

That intuitive understanding (of Dosa ) just literally got water in my mouth;)
btw wonderful explanation harry bhaiya, hats off to you!!!

akshitsangwan_
Автор

harry bhai thank you very much for the playlist of c. it is really very interesting . we loved the coding in this playlist. Just a small request from you that if possible plz put some codes or programs for that we can practice or put some more examples in your notes or source code that you give us in description for every tutorial. put some more examples or codes with solutions of every topic . thank you!!

devasyarajguru
join shbcf.ru