12th maths padhi hoti toh tujhe zeher nhi lagta ekdum basic hai ye
@palashagrawal23434 жыл бұрын
@@nirmalbuoy 11th maths be
@nirmalbuoy4 жыл бұрын
@@palashagrawal2343 Ha wahi jo bhi hai, hume JEE coaching ke waqt aisa kuch 11th 12th nahi padhaya tha isiliye pata nahi kaunse class me aata hai
@crazygirls28623 жыл бұрын
11th maths Padhi nahi hai aapne bca wale ho na
@iamFJ183 жыл бұрын
Halwa hai😂😂
@apmotivationakashparmar7222 жыл бұрын
fib(5)=fib(4) + fib(3) = fib(2) + fib(3) + fib(2) + fib(1) should in place of fib(2) + fib(3) + fib(2) + fib(3).
@rohitashwapratapsingh1422 жыл бұрын
yes
@anju73342 жыл бұрын
Ye chij mujhe samaj ni aayi ki Harry bro ne kaise toda Could you pleas explain me?
@apmotivationakashparmar7222 жыл бұрын
fib(n) = fib(n-1) + fib(n-2) apply this .
@anju73342 жыл бұрын
@@apmotivationakashparmar722 n = 5 so fib(5) = fib(4) + fib(3) ho gya But iske bad ye dubara se jab run hoga to fib(4) ke liye fib(4-2) = fib(2) Fib(4-1) = fib(3) And fib(3) ke lye fib (3-1) = fib(2) Fib(3-2) = fib(1) Banega but lecture me fib(1) to kahi hai hi nhi
@anupamdatta6584 Жыл бұрын
@@anju7334 Jab fib(1) meh jayega toh value toh 1 return karega kyuki n
@aaryanmehta9813 жыл бұрын
Can you give practice uestions after every lecture
@iSubhoo3 жыл бұрын
Sir, jab samajh me awajata hay, to video ending song bohat acha lagtahay.
@harmankaur39382 жыл бұрын
//Author:Harman kaur //purpose:fibonacii series #include using namespace std; int fib(int n) { if (n < 2) { return 1; } else { return fib(n - 1) + fib(n - 2); } } int main() { int num; cout num; cout
@Bloodflood4 ай бұрын
what will be the iterative approach he is mentioning is it with the help of loops
@saeedahmedjamali72352 ай бұрын
Thank you! Needed this for an assignment
@AnEngineerHuman Жыл бұрын
Loving this playlist. Day-12 Completed upto Tutorial-18 Date-14/12/2022 Time-19:32 Topic-Recursions and Recursive Functions
@sayman099 Жыл бұрын
bro are u from cs / it branch?
@AnEngineerHuman Жыл бұрын
@@sayman099 yes bro,i am from it branch.
@pratikingle3963 Жыл бұрын
@@AnEngineerHuman CPP DONE???
@pratikingle3963 Жыл бұрын
@@sayman099 TUM KONSE BRANCH SE HOO??
@AnEngineerHuman Жыл бұрын
@@pratikingle3963 ha ,keh sakte ho .Par jada practise nahi hui... Thanks for reminding me
@Abhishek-dp5tc4 жыл бұрын
competitive programming pe series bana bhai, Please!
@SK-gp6cm2 жыл бұрын
Do you find cp series???
@Abhishek-dp5tc2 жыл бұрын
@@SK-gp6cm wow 2 years back Yes many series are there, I also bought a course on udemy but it is more of DSA focused rather than cp
@SK-gp6cm2 жыл бұрын
@@Abhishek-dp5tc can you share that link
@Ramneet042 жыл бұрын
Bro where can i practice question or should i practice question or first complete whole series of c++ here
@gulshansingh79612 жыл бұрын
@@Ramneet04 first complete this series
@khatariinsaan52843 жыл бұрын
7:55 what a clear Explanation
@tcoa79_rajdange623 жыл бұрын
Legendary 😃
@30vaibhavdhaygondexdr.v.sa224 жыл бұрын
3:06 ----> this is correct
@yashodharpatel65944 жыл бұрын
We can also do this by using Array, It decreases the execution time. 1. Factorial : int fact(int n){ int a[100]; a[0] = 0, a[1] = 1, a[2] = 2; for(int i = 3;i
@ayushparmar77293 жыл бұрын
bhaiya is factorial wale tarike se aur harry bhaiya ke tarike se bhi 20! ka ans nhi aa rha ans negative m de deta h koi solution is ko solve krne ka for greater integer values
@kartikbisht1909 Жыл бұрын
@@ayushparmar7729 20 ka factorial?
@kartikbisht1909 Жыл бұрын
@@ayushparmar7729 bhai 20 ka factorial itna badha hota h ki int mi nhi aa sakta kyuki int ki range -2147483648 to 2147483647 hoti h aur iska factorial quadrillion mei h
@ayushparmar7729 Жыл бұрын
@@kartikbisht1909 bhai vo to ho gya tha jo bhi digit calculate krke aa rhi h use array m store krte joa aur pos pointer ko +1 krte jao
@kartikbisht1909 Жыл бұрын
@@ayushparmar7729 ook
@indrocky65303 ай бұрын
In the fib function, the base case returns 1 for n
@rajanijaiswal3334 жыл бұрын
Awesome video Question of 03:00 yess
@Ishika-n9g Жыл бұрын
11:42 if(n
@b10gaming23 жыл бұрын
I can't even imagine a world without stack overflow and codewithharry!
I realized something that all the people who are watching this to learn c++ are building there programming style a lot similar to harry bhai's
@AbhrajyotiDas-l7h Жыл бұрын
While calculating the factorial of very big number, we get zero since computers try to give the answer in exponential form. So, to get the actual result, change the data type of the function to double to get the exact value. Hope this helps!
@AnushkaPandey-h2c Жыл бұрын
Actually, I wanted to calculate the factorial of 100 but it gave 0 as an answer...I was confused. But because of your advice, I changed int to double and I got the correct answer. Thank You!
@AbhrajyotiDas-l7h Жыл бұрын
@@AnushkaPandey-h2c Happy to know that the solution I gave, helped somebody :) ! This made my day :)
@Sports-im6yv Жыл бұрын
Bhai datatype long used karke dekh
@bansilalnabediya3501 Жыл бұрын
@@Sports-im6yveven better long double😊
@Sports-im6yv Жыл бұрын
@@bansilalnabediya3501 thanks bhai ❤
@nishtha96662 жыл бұрын
Ur explanation is Just amazing👍👍👍👍👍The Best
@bhuwannath612 жыл бұрын
2:52 n! = n*(n-1)! It is correct . Let we take example : Factorial of 5 = 5×4x3x2x1 . Instead of multiplying like above we should first calculate factorial of 4 and then multiply it with 5 . Now we get factorial of 5.
@programinglife.14002 жыл бұрын
Hme bhi ata hai
@nitishkr752 жыл бұрын
@@programinglife.1400 😂😂
@rudranshsharma11422 күн бұрын
Giving some question that You can practice 1)Write a program which displays the largest among 2 No. 2)Write a program which displays grade on basis of marks 3)Find the roots of quadratic equation 4) To find year enter by user is a leap year or not 5)To find operation of 2 No. enter by the user by (Switch) method{+,-,*,%,/)etc. 6)To find operation of 2 No. enter by the user by (if else ladder) method 7) using goto feature create a multiplicative table 8)Sum of digit of integer enter by user by (goto) statement{EX- 76 = 13} 9) Sum of n natural numbers using (for) statement 10)To Find factors of No. enter by user 11)To find to Reverse of Digit 12)To state whether no. enter is Penedrom or not 13)To find No. is prime or composite Agar inke code cheye to message me . Please Pin this student ki help hogi bhot isse ache questions hain
@saqlainali8401 Жыл бұрын
Wasa ap boht amazing ho sar manna padaga he is so amazing apki explanation to ItnA excellent ha ka na bhi samajh aya to ap samjha hi data han ItnA àcha aj tak mujha kisii na koi topic nhi samjhaya you are the best for explained every topic thank you so much sir thanks
@royfamily92732 жыл бұрын
Yes, n!=n*(n-1)!. Thanks Harry Bhaiya
@akshanshkaushal94222 жыл бұрын
16:00 It should be like this. Fib(3)= Fib(2)+Fib(1)...correct me if I'm wrong.
@janakkore15972 жыл бұрын
I think you are right since I was searching for this comment as well
@HiTech12033 жыл бұрын
You have made my coding life easy
@karanbisht-k6k Жыл бұрын
Iterative approach for fibonacci. #include using namespace std; void fibonacci(int n){ int a =0; int b=1; int sum =0; cout
@anees_05 Жыл бұрын
fib(5) // fib(4) + fib(3) // fib(2) + fib(3) + fib(2) + fib(3) harry bhai ap ne is mai ghalti krdi hai mai tou cinfused hogaya tha pehle ab clear hogaya
@kiranshinde033 жыл бұрын
3:08 yes Harry Bhai we can write.
@akashwaghmare72212 жыл бұрын
You are the most intelligent programmer in the India
@satyamsharma8371Ай бұрын
Superb... 👍👍👍
@fellincode26073 жыл бұрын
finally mere ko recursion samajh me aagaya mene java playlist me ek baar video dekha to mere ko utna samajh me nahi mene dusri baar dekhna ka socha procasination hoto gayi!
@kunalkumar67832 жыл бұрын
IN last 16:30 - I will see you next time...... BGM(totally incredible)
@kumkumbhagya51 Жыл бұрын
2:51 sahi hoga kyuki yahi formula hai factorial nikaalne ka
@pikachugaming33712 жыл бұрын
You are same like my sir very understanding
@syeduzairmohiuddin55142 жыл бұрын
👍👍👏Excellent explanation.
@abuhuraira52932 жыл бұрын
recursions means a function is calling itself on its own until it gets the answer
@kumkumbhagya512 жыл бұрын
bro pls practice set bana do us se aur bhi zyada confidence aa jaata hai jab saare questions complete krleta hu
@internetenjoyer91862 жыл бұрын
For calculation nth term we can use a+(n-1)d, where a is 1st term and d is common difference
@ananyasingh7742 жыл бұрын
that's for constant series, but here the common difference is changing
@Life.Z1 Жыл бұрын
Ha..it is the staple equation where the difference is fixed
@nishumittal42772 жыл бұрын
yes, we write n*(n-1) to the n!
@vijaysurve47003 жыл бұрын
Teaching method is awesome👍👏
@atifmalik80123 ай бұрын
#include using namespace std; int factorial(int n){ if(n==0||n==1){ return 1; } else{ return n*factorial(n-1); } } int main(){ int n; cout
@jawadmalik6832 Жыл бұрын
we can also find factorial using static as in previous video.
@DhvanitMonpara10 ай бұрын
How? I tried but it isn't possible without recursion or looping.
@SamarthChawlaSam3 ай бұрын
1:32 6! = 720 2:52 Sahi hogi
@harshitjain20813 жыл бұрын
2:55 Yes it is factorial
@AbhishekKumar-id3yz3 жыл бұрын
Fibonacci Series 0 se start hota hai. 12:46 par n sahi tha. Aapne 1 kar diya anways bade bade sahro me chotti chotti baat hote rahti hai
@iSubhoo3 жыл бұрын
Yes Sir, n! = n * (n-1)!
@harshhitgupta44344 ай бұрын
bilkul sahi baat hogi
@sea6043 жыл бұрын
सही बात है।
@MayureshYadav-xf1ii8 күн бұрын
Thank you so much sir
@gameforall_official3 жыл бұрын
It will be If(n
@zebra-er6xc2 жыл бұрын
yes you are correct
@studytostudy59192 жыл бұрын
Ha likh sakte hai 😀👍🏻....
@gaganagrawal81943 жыл бұрын
Sir please provide practice questions also
@Rizwankhan-dh5xh3 жыл бұрын
make a complete course on data structure and algorithum please sir
@BlackScreenProductions2 жыл бұрын
Write a C ++ Program. We have a day-to-day record of USD price in PKR for last 100 weeks. Find the week, which has a highest variation in PKR, while a base price is 160Rs = 1 USD. Also, find which week has the highest average USDprice Sir Please Solve The Problem
@PraveenKumar-rg6xs2 жыл бұрын
Question mein to logic hain wahh
@satyamkarn32772 жыл бұрын
3:07 yes you can write.
@hopes_alive-1003 жыл бұрын
3:06 yes! likh sakte hai
@manavroy72932 жыл бұрын
3:06 Yes.
@akashwaghmare72212 жыл бұрын
Your teaching is awesome
@DaniyalSaqib-my1us8 ай бұрын
Recursion is just a function calling itself inside itself
@khizrshaikh99023 жыл бұрын
2:46 Yes It is correct ye baat sahi hongi
@engineeringlife45672 жыл бұрын
Sir , ye video enough h ya fir particle exercise bhi karni padegi
@rashidhashmi6181 Жыл бұрын
yes u can it as factorial✅
@hibbonix9530 Жыл бұрын
Muje bohot achhe se samj aa gaya thank you sir 😭😭😭
@satyaanand9243 Жыл бұрын
toh ro kyu rahe ho?
@hibbonix9530 Жыл бұрын
@@satyaanand9243 hay tum bhi dsa sikh rahe ho kay?? Please reply karna
@chaolobi76982 жыл бұрын
thanks harry bro
@jaydeepsatani68782 жыл бұрын
yes likh sakte hai
@alnahian80512 жыл бұрын
3:08 yes it can be written
@papaajanpapa4281 Жыл бұрын
Yes true Hogi n!
@codingislit14043 жыл бұрын
Thanks bhaiya
@AdityaGupta-cz7wp4 жыл бұрын
recursion function is also known as aatmnirbhar function
@rohitashwapratapsingh1422 жыл бұрын
oooo
@tayyab.sheikh Жыл бұрын
Now i understand kay India ka har bacha coder kyuon hai.
@newsend257 Жыл бұрын
time 2:53 Yes , ture , n! = n * ( n -1)
@saadhassan88136 ай бұрын
good teacher
@chinmaykhairnar67502 жыл бұрын
Yes we can write 3:07
@XengShi4 жыл бұрын
# same function in python def factorial(x): if x
@prashantmajumdar15194 жыл бұрын
But very slow as compared to cpp if you run it it will take 5-7 sec but in cpp even more lines of code will run under 2 sec
@dhananjayjadhav70643 жыл бұрын
But code is wrong💯💯
@sanatandharmyogicculture7002 жыл бұрын
Teaching method is awesome
@109_ritikahasija53 жыл бұрын
Bhaiya agar hum fibonacci function ko inline banate to kya hota?
@Lifeinspiration7777 Жыл бұрын
recursion means function call itself again an again until result is found
@abhishekchoudhary12043 жыл бұрын
yes we can
@gurpreetsingh-jh3bk3 жыл бұрын
thank you sir
@chiragwadhwa79093 жыл бұрын
2:55 correct
@angshumandasgupta48572 жыл бұрын
yes you are right
@varshithkumark89937 ай бұрын
12:57 for n
@heeru3793 жыл бұрын
return fib(n-2) + fib(n-1); Jab me input *2* dunga to (2-2) + (2-1) 0 + 1 = 1 *1* return ho chahiye na. To fir *2* kyun return ho rha hain? 🤔
@sahil29173 жыл бұрын
fib(0) + fib(1)= 1 + 1 = 2
@suryakumararun57613 жыл бұрын
Fib(n-2) ≠ (n-2)
@aniketraj2692 жыл бұрын
3:06 Bilkul hoga bhaiya
@sagar_wani3 жыл бұрын
Thank Harry 😊
@mr_amit_shelke Жыл бұрын
3:11 Yes, Ofcourse
@techahsan18732 жыл бұрын
yes likh sakty hain (n-1)
@anshitshukla74984 жыл бұрын
Data structures aur algorithm pe playlist 🙏🙏🙏🙏
@nikhilraj18424 жыл бұрын
go to geeksforgeeks until codewithharry sir upload Data structures and algorithms
@anshitshukla74984 жыл бұрын
@@nikhilraj1842 thanks
@niteshbovi7693 жыл бұрын
@@nikhilraj1842 can u plz tell me the roadmap for programming language with dsa
@nikhilraj18423 жыл бұрын
@@niteshbovi769 well i am not a professional in this topic as I learned which i like to do in dsa like question solving and I Don't follow a roadmap. So i can't give you roadmap for this.
@kundanpatidar92074 жыл бұрын
Love these content
@Sousa22552 жыл бұрын
3:05 Obviously sir
@Ajaykumar-nj5yz4 жыл бұрын
सर, आपसे एक सवाल था कि अगर में python series के साथ C++ की series भी साथ में लेकर चलू तो क्या ये, ठीक रहेगा, क्योंकि कुछ लोग बोलते है, कि C++ python से कठिन है सिखना।
@Souravkumar-iw7gy4 жыл бұрын
ek samay pe ek language sikhna behtar hai, aur python aur c++ ke syntax bilkul alag hai
@Ajaykumar-nj5yz4 жыл бұрын
@@Souravkumar-iw7gy pr mera mind bolra h ki C++ ke basics bhi saath lekr chalu taaki kb advanced pe aau to koi prblm na ho
@prathameshsuryawanshi50174 жыл бұрын
@@Ajaykumar-nj5yz concepts to lagbugh same hi hai sirf syntax different hai
@shumailabatool74933 жыл бұрын
Yes we can write n*(n-1)!
@thegyaan75353 жыл бұрын
Yes u can
@piyushjat52133 жыл бұрын
I don't know programming very well but I know maths very well and according to me for example if we put 5=n then fib(5-2)=3+fib(5-1)=4 and putting 4 and 3 together we get 7 not 8 please tell me who's wrong the program or my maths
@gauravgharmalkar17273 жыл бұрын
Ur math is wrong fib(5-2)=fib(3) hota hai 3 nahi hota..waha fib(3) ki value 2 ayegi
@crazygirls28623 жыл бұрын
Maths galat jagah se padh rahe ho. Tuition change karo
@sajidamehrosh5053 жыл бұрын
Sir you make programing easy for me really thank you SSO much.....
@MrUKD44442 ай бұрын
yes ❤
@076702 жыл бұрын
Your way of teaching is really awesome . But I have one request can u plz written program separately , sometime it's confusing and irritating too...