Ho sake to please is playlist ko share kar dena - ua-cam.com/play/PLu0W_9lII9agpFUAlPFe_VNSlXW5uE0YL.html Thanks for all the love and support. Kaisa chal raha hai ye course so far?
yaar harry bhai tumhara bahut shukriya in sb videos k lye ! ik time pr programming naam sunkr hi dr lgta thha bt ab aapse yutube pr seekh kr ye sb hlwa lgta hai ,u r far better then my college faculty teachers jo k itni fees lekr bhi khuch nhi sikha paye !Allah aapko bahut khush rkhe u r my real mentor , mai ik bar apne real guru se milna chahta hun ! Tons of thanks
u r the most successsful coder .. u r having lots of knowledge .. allah give u more and more success in the future ..i want to become with u .. u r my role model .. lots of love haris bhai..for my side.
Harry bhai aap please sab video k end m 1 bar code ko start sa leka end tk show krdiya kro....bcz hum video m end m code ko copy pa note krta h for better revision in future .... toh hma upr ka code utarna k liya video k start m jana pdhta h.... isi bich kbi aap koi new chej add krdeta ho jo hnsa miss ho jati h...... YOU'R WAY OF TEACHING IS RELLY NICE... I HAD NEVER SEEN ANY TEACHER WHO TEACH US BETTER THAN YOU... EVEN EQALLY TO YOU..... LOVE FROM JAMMU THANKS SOO MUCH TOH PROVIDE US FREE KNOWLEDGE IN VERYY VERYY GOOD WAY..... YOU TEACH US MANY COMPLICATED THINGS IN A VERY SIMPLE WAY... I REALLY SUPRISED HOW YOU DO THAT... THANKS AGAIN MOHIT...FROM JAMMU
iss video jab 7:30 pe tha tab mein mere papa mere room mein aae vo sunke bolne lage beta kuch padhai karle ye kya dekh raha hai. Lol. nice content. fun learn. keep going harry bhai.
ptrtemp will not be deleted like this cause it's not dynamically allocated you need to delete only the ptr. You can set ptrtemp=NULL not to get the garbage value
Harry bhai muje apka ptr ko loop mae increase karne ka tarika samaj nhi aya 16:07 to mene dusra tarika dunda // input for loop mae for (int i = 0; i < 3; i++) { cin>>n>>m; (ptr + i)->setdata(n, m); } // output for loop mae for (int i = 0; i < 3; i++) { (ptr + i)->getdata(); }
Sir we can do that thing without pointer too...I would like to request you to differentiate between the usage( means when exactly we need to allocate address using pointer followed by program and when we can do it normally)?
@@shashijaiswal688bro you are incrementing the address which is stored in ptr instead of the value at the address at ptr. So, it'll most likely give an error. (I might be wrong!)
instead of temp we can also add (ptr +i) in both the loops int main() { class shop { int a, v; public: void setdata(int ab, int bc) { a = ab; v = bc; } void getdata() { cout
@CHOUDHARY HIMANSHU error didn't show up in my code bro, i am basically saying is that, he made a different pointer and some other stuff to run the next loop but i am simply resetting the same pointer...
Naya pointer banake index reset karne ke bajay ham for loop ke baad ptr=ptr-size; or ptr-=size; like ke bhi index ko reset kar sakte hai.... #include #include using namespace std; class shop { int id; int price; public: void getData(int a , int b) { id = a; price = b; } void print() { cout
Ho sake to please is playlist ko share kar dena - ua-cam.com/play/PLu0W_9lII9agpFUAlPFe_VNSlXW5uE0YL.html
Thanks for all the love and support. Kaisa chal raha hai ye course so far?
Your Django course is great. I have suggested your channel to one of my friends who wants to start programming. ⌨
Bhai course is going well 👍 and want to ask you to make a video on super Mario game with python
Ek dam mast Bahi
Hello sir java ka bhi complete course upload kijiye
@@Jatin-kumar nice idea. I also want something like that
yaar harry bhai tumhara bahut shukriya in sb videos k lye ! ik time pr programming naam sunkr hi dr lgta thha bt ab aapse yutube pr seekh kr ye sb hlwa lgta hai ,u r far better then my college faculty teachers jo k itni fees lekr bhi khuch nhi sikha paye !Allah aapko bahut khush rkhe u r my real mentor , mai ik bar apne real guru se milna chahta hun ! Tons of thanks
3:25 Yo thara bhai Harry!
itni classay baneyega,
itni classay banayega
k compiler bawla ho jayega
🤣🤣🤣🤣
Understanding Coding in desi style will have lot of fun,next time plzz use Kiraana 😂😂
😃😄ha sahi hai....
at 16:28 we can do (ptr+i)->getData(p,q); and similarly the setData too , hope it helps
yes its working
Majedar Content..🔥🔥🔥
Sir, you are really amazing! Thank you!
Bro till now how many languages you have learnt
👏👏For you
Giving us a chance to learn alot of language
17:50 creativity upto the level
You could've used (ptr+i)->fn() inside the loops in order to avoid ptrTemp.
Right
Mera khayal se ptrTemp wala concept zyada asan hai
Exactly I thought the same
@@iamFJ18 aasan toh h but extra memory le rha h ptrTemp ko store krne mein
can u pls write the code
1:10 I will always prefer "Namaste Duniya" rather then "Hello World" ❤ 🇮🇳
"Namaskar Srishti" will sound more desii!!
#include
using namespace std;
int count = 0;
class Sum{
float a;
float b;
public:
void set_Value(float x, float y) {
a = x;
b = y;
count++;
cout
harry bhai aap se zada humble insaan maine nahi dekha!!!
Sab se achaa ninja techniques are given by Harry bai
Awesome sir
Your teaching style is awesome
I m very thankful to you for providing us a great content for learning languages
we can use statement p-=size b/w two for loop for p to again some at the start
u r the most successsful coder .. u r having lots of knowledge .. allah give u more and more success in the future ..i want to become with u .. u r my role model .. lots of love haris bhai..for my side.
Halvey se bhi zyada aasan kar diya hai harry bhai apne...thank you so much for this playlist
Harry Sir, you explained the concept very well. Thank you!!!!
Thanks sir for helping all students of india to become successful in there life. Hats off for such a great work.🎉🎉🎊🎊👏👏👍
Pakistan too😃
1.5K likes on every video. Your subscribers are maintaining consistency. Me too one of them.
17:01 its called 3D explanation 👏👏👏harry bhai🙌😎
buddy love the way you teach ♥♥♥♥
Literally best teacher ❣️🌸
16:35 we can use ptr+i in place of ptr++
as i starts from 0 so you can write ptr+=1 instead of ptr++
But use of ptr++ is just simple
@@DevHrsh but wont we lose the ptr to 1st element. now this ptr will go till end and then how to bring it back to 1st???
@@aishwaryaanand7870 no, we won't loose first element as loop is already executed for first loop
@@aishwaryaanand7870 for bringing it back to first simply type ptr = ptr-3; after first loop block
@@aishwaryaanand7870 #include
using namespace std;
class ShopItem
{
int id;
float price;
public:
void setData(int a, float b){
id = a;
price = b;
}
void getData(void){
cout
I rewatch the last part after writing code and then I finally understand why did you use temporary address for 2nd loop ThankYou so Much Harry SIr
Outstanding way of teaching ✌🏻✌🏻🙌🏻❤❤🔥🔥
Why should we make array of pointers in this way,
instead we can do
complexno C(34, 12), D(89, 76);
complexno *ptr2[] = {&C, &D};
Visuals sahi 💯 tha. Great explanation 👏
Shared this to my university's group
Thank you so much Harry bhai!
Thank you so much... Bhot ache se samajh aa gaya!
completed sir. Thank you sir...
Harry bhai aap please sab video k end m 1 bar code ko start sa leka end tk show krdiya kro....bcz hum video m end m code ko copy pa note krta h for better revision in future .... toh hma upr ka code utarna k liya video k start m jana pdhta h.... isi bich kbi aap koi new chej add krdeta ho jo hnsa miss ho jati h......
YOU'R WAY OF TEACHING IS RELLY NICE... I HAD NEVER SEEN ANY TEACHER WHO TEACH US BETTER THAN YOU... EVEN EQALLY TO YOU.....
LOVE FROM JAMMU
THANKS SOO MUCH TOH PROVIDE US FREE KNOWLEDGE IN VERYY VERYY GOOD WAY.....
YOU TEACH US MANY COMPLICATED THINGS IN A VERY SIMPLE WAY... I REALLY SUPRISED HOW YOU DO THAT...
THANKS AGAIN
MOHIT...FROM JAMMU
iss video jab 7:30 pe tha tab mein mere papa mere room mein aae vo sunke bolne lage beta kuch padhai karle ye kya dekh raha hai. Lol. nice content. fun learn. keep going harry bhai.
Genuinely bhaiya this course is very helpful. Thank u
22:44
cout
Harry Bhai apse nahi milenge kyun ki ap bohot bara gunah kar rahe ho(endl nahi laga kar😂😂)
ek dum mst bhai sch m itna acha koi nhi pdhata bhai ek dum mst
The way you taught pointers 💙❣️
Love to watch your video's
Keep uploading
Thanks Harry bhai for your awesome vedioes
u forget these-
delete [ ] ptr;
delete[ ] ptrtemp; nice explanation bro love it
ptrtemp will not be deleted like this cause it's not dynamically allocated you need to delete only the ptr. You can set ptrtemp=NULL not to get the garbage value
If anyone wants a better understanding they can read E Balagurswamy C++ book along with the videos . Same book vaala hi samjhaya hai Harry Bhaiya ne
New viewer here. I absolutely love this course.
Rather then using this we can simply add by ptr[i];
and then display with the same loop using same ptr[i]; to display you can try it it works
very helpful videos for me I appreciate you your videos bro
Congrats Guruji for 2M
7:24 compiler devta be like -> Thatastu lekin class declare krne ke baad semicolon jrur lagana :)
Harry bhai muje apka ptr ko loop mae increase karne ka tarika samaj nhi aya 16:07 to mene dusra tarika dunda
// input for loop mae
for (int i = 0; i < 3; i++)
{
cin>>n>>m;
(ptr + i)->setdata(n, m);
}
// output for loop mae
for (int i = 0; i < 3; i++)
{
(ptr + i)->getdata();
}
To avoid temp ptr we can use this :
for(int i=0; igetdata(5);
ptr++;
}
ptr--;
for(int j=0; jprintdata();
ptr--;
}
Thank you very for this C++ course...🙏🙏
Another Amazing Lecture
@CodeWithHarry Bhai God ho kya? Best explanation I could ask for!
bilkul bhi tricky nhi laga ,thanks bhai ji!!!
Sir we can do that thing without pointer too...I would like to request you to differentiate between the usage( means when exactly we need to allocate address using pointer followed by program and when we can do it normally)?
Compiler devta🙇🙇
Always support you Harry bhai
Instead if incrementing ptr you should cout
But i is getting added to ptr na. Can you explain how
@@sit33darshanpagar16 I can't understand your question.
@@shashijaiswal688bro you are incrementing the address which is stored in ptr instead of the value at the address at ptr. So, it'll most likely give an error. (I might be wrong!)
Thanks Harry Bhaiya
7:18 compiler Devta was epic one 🤣
harry bhai ek din apka channel sbse bada tech education channel ban jayega puri duniya me
Compiler dewta....what a word...Harry bhai.. 😁😁😁
3:54 class works as an data type in Main fn😯
Waaah ...maza aa gya dekh kar
Awesome video bhai
Very good playlist.
Thank you so much Harry Bhai.
Harry bai me tumara fan bangaya yar❤❤❤
Please make a tutorial for computer architecture and organisations
7:25 compiler devta 🤣;I love your desi style cwh:)
Django react tutorial ❣️
Its help me a lot .thnx vaiya 💙
🥳🥳🥳 thank you Harry bhai ✌️
10:30
Everyone knows for loop
It is easy
shared sir already share to my whole nallay friends, now they all are studying from here.
compiler devtaa ! Nice one
instead of temp we can also add (ptr +i) in both the loops
int main()
{
class shop
{
int a, v;
public:
void setdata(int ab, int bc)
{
a = ab;
v = bc;
}
void getdata()
{
cout
Bhaiya agr isma char use karta hai tho error dikha rha hai agar apko aata hai tho please Bata dijya
no need to use another for loop for getdata
you defined class in main function how?
@@justforinspiration6061 that's how it works. But now i forget it
at 16:50 you could've use ptr+i instead of ptr++ so you wouldnt have been needing temp
If you would have simply written..
ptr-=size; after 1st for loop
It would have worked fine : )
@CHOUDHARY HIMANSHU error didn't show up in my code bro, i am basically saying is that, he made a different pointer and some other stuff to run the next loop but i am simply resetting the same pointer...
@CHOUDHARY HIMANSHU muja bhi same error aa rhi hai
Right.. ptr=(ptr+3)-3 =ptr 👍
legend admi ho tum bhai
thanks bhai, maza agaya
harry bhai you are awesome
❤❤💝HARRY BHAI
Happy Teacher's day paaji
compiler devta ..... ha ha ha ,, it was very funny , the video was awesome bro thanks
mangaye yarr tumarae padhaneka tarikako, ko v samjhjayega.thanks dil se
thank you harry bhai
Wah G Wah ❤️❤️
Thanks harry bhai 👍👍✌
Thanks Harry Sir
Sir 🧠🗝️🔓 lectures ❤❤
bro ek to aapke knowledge ko dekhkar confidence down hota jaata hai
Desi style best hai bhai
Thank You
.
.
.
Harry bhai apki vedio khulte hi pahle like aur phir comment
Thank you so much !
AAP MAHAN HO HARRY BHAU
ha "class and object" ab halwa lagta hai😒. Thanks bhaiya 😎🙏🏽
There is no need to make *ptrTemp. Simply do not write ptr++ while taking input. The same output will be printed on the screen.
thank you so much.,
Naya pointer banake index reset karne ke bajay ham
for loop ke baad ptr=ptr-size; or ptr-=size; like ke bhi index ko reset kar sakte hai....
#include
#include
using namespace std;
class shop
{
int id;
int price;
public:
void getData(int a , int b)
{
id = a;
price = b;
}
void print()
{
cout
Garbage value aya hai is I'd 1 and 2 ka .