Friend Classes & Member Friend Functions in C++ | C++ Tutorials for Beginners #27

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ม.ค. 2025

ความคิดเห็น • 512

  • @rahulsaroha8724
    @rahulsaroha8724 4 ปีที่แล้ว +182

    This type of content is only possible when you know the true goal of your life.

  • @shubhgupta7876
    @shubhgupta7876 4 ปีที่แล้ว +47

    code with harry is far better than apna college

    • @Sy06274
      @Sy06274 4 ปีที่แล้ว +1

      yes you are right

    • @amarkumarsahu9295
      @amarkumarsahu9295 4 หลายเดือนก่อน

      Agreee

    • @nilusingh75
      @nilusingh75 2 หลายเดือนก่อน +4

      apna college ka vdo dekh ke aisa feel hota hai ki bahut smjh me aarha hai but in reality jab programming krne baitho ya fir tests do toh feel hota hai ki kuch smjha hi nhi ...still i prefer both the channels

  • @damanpreetsingh8389
    @damanpreetsingh8389 3 ปีที่แล้ว +232

    Overview of this and previous video:-
    In previous video, we declared a function outside class and that function tried to access the members of class which is not possible. So we declared the function friend.
    In this video, we made 2 classes with their respective functions and the members/functions of one class tried to access the members of other class which is not possible. So we declared the members of one class the friend of other class or we can declare the whole class friend of other class.
    Rest is syntax which we need to understand.

    • @zikrerasul7021
      @zikrerasul7021 2 ปีที่แล้ว +6

      thanks, summed it up perfectly

    • @damanpreetsingh8389
      @damanpreetsingh8389 2 ปีที่แล้ว +1

      @@zikrerasul7021 my pleasure ;)

    • @anwesh07
      @anwesh07 2 ปีที่แล้ว +1

      Why "add" function is not made friend of "Complex" class.....bcoz it is also trying to access the private members of "Complex" class????

    • @damanpreetsingh8389
      @damanpreetsingh8389 2 ปีที่แล้ว +9

      @@anwesh07 'add' function is not trying to access the variables a & b in Complex class bcoz they have same name but they are stored in different memory location.
      Let us say if you have a class A with variable 'int a' in private & a function to set and display for 'a'. Now there is a function outside the class to display 'a' as well. In the parameter if you will write (int a) and {cout

    • @sidhlover25
      @sidhlover25 2 ปีที่แล้ว

      @@anwesh07 no

  • @zohaibafridi
    @zohaibafridi 2 ปีที่แล้ว +42

    You are one of the best programming teacher on TH-cam. Everywhere your name on the top in Programming.
    Thanks a lot.

  • @altamashsabri8142
    @altamashsabri8142 4 ปีที่แล้ว +187

    best tutorial on c++ literally

  • @riseabovehate1892
    @riseabovehate1892 4 ปีที่แล้ว +13

    You are one of the best coding teacher in INDIA

  • @zulquarnainansari4471
    @zulquarnainansari4471 4 ปีที่แล้ว +128

    For every 12 hours a day , I am watching your video....

    • @organafillic
      @organafillic 6 หลายเดือนก่อน

      syntax hai bhai

  • @mohammadadnanofficial
    @mohammadadnanofficial 4 ปีที่แล้ว +62

    I want some practice questions for this tutorial

  • @indrajeetpatil3589
    @indrajeetpatil3589 2 ปีที่แล้ว +16

    //distance betwwen two points in coordinates system
    #include
    #include
    #include
    #include
    #include
    using namespace std;
    class Coordinates;
    class Distance{

    public:

    double Sqrt(Coordinates, Coordinates);

    };

    class Coordinates{

    double a,b;
    public:

    void setNum(double x, double y){
    a=x;
    b=y;
    }



    friend class Distance;

    };

    double Distance :: Sqrt(Coordinates o1, Coordinates o2){


    double sum=((o2.a-o1.a)*(o2.a-o1.a)+(o2.b-o1.b)*(o2.b-o1.b));
    return sqrt(sum);

    }

    int main()
    {
    Coordinates o1;
    Coordinates o2;
    o1.setNum(1,0);
    o2.setNum(1,0);

    Distance calc;

    double res = calc.Sqrt(o1,o2);
    cout

  • @behzadarif99
    @behzadarif99 4 ปีที่แล้ว +4

    You are very good teacher
    Maine aaj tak aapke jaisa koi teacher nahi dekha youtube par bhi aur kahi bhi
    Sachme aap ki padhane ki technic bahtreen hai 👌👌👌❤️❤️❤️❤️

  • @koushik7604
    @koushik7604 4 ปีที่แล้ว +19

    brushing up my programming knowledge ... it's really good! Thank you!

    • @artishsharma7859
      @artishsharma7859 4 ปีที่แล้ว +2

      Why he is declaring calculator before complex plz explain

    • @FANSasFRIENDS
      @FANSasFRIENDS 3 ปีที่แล้ว +4

      @@artishsharma7859 Well as far as I could understand , he here declared calculator class before complex class which does not has a specific reason so if u do not wish to change the position of the class then u can do so but then u will have to Forward declare the Calculator class instead of Complex class, rest same.

  • @AmanKhan-lj3wh
    @AmanKhan-lj3wh 2 ปีที่แล้ว +8

    lost a bit in between the video but till the end of video you cleared all the doubts
    Thanks a lot for the whole series man

  • @EnglsihCommByNawaz
    @EnglsihCommByNawaz 3 ปีที่แล้ว +18

    Ohhh my god! Really Harry sir to declare entire class as a friend is really amazing!

  • @mohdaadil6204
    @mohdaadil6204 2 ปีที่แล้ว +6

    The course is very helpful especially for beginners, your way of explaining is very awesome and unique. I love this course.

  • @arpanchowdhury5133
    @arpanchowdhury5133 4 ปีที่แล้ว +31

    Topic :Competitive programming , please make video how much it is necessary and how can we continue it with development. Thank you.

    • @bussasunitha1876
      @bussasunitha1876 ปีที่แล้ว +1

      Bro can u please tell me what topics should we learn to do problems of rating 1500 to 1800 in codechef

  • @nitametkar
    @nitametkar 2 ปีที่แล้ว +8

    Harry love your way of teaching this might take me to excellence in coding
    🤩

  • @JustwaitNwatch-w
    @JustwaitNwatch-w 2 ปีที่แล้ว +1

    15:50 bro i am not even surprised by this i can understand ke aapke andar ladoo foot rahe the uss time 🤣
    btw good tutorials

  • @AshutoshKumar-fu6qe
    @AshutoshKumar-fu6qe 3 ปีที่แล้ว +69

    Google Ads : Are you interested in learning c- language?
    .......
    Me: No, I am interested in learning c-language from harry bhai.

  • @anmolagrawal7307
    @anmolagrawal7307 3 ปีที่แล้ว +5

    great learning from you literaly you make the tutorial very intresting without investing a single money

  • @mohtishammuzzammil9084
    @mohtishammuzzammil9084 4 ปีที่แล้ว +4

    ONE OF THE BEST TEACHERS I THINK

  • @girrajkushwah182
    @girrajkushwah182 3 ปีที่แล้ว +1

    harry bhai bhut achcha se samjh me aa rha h or pdne me mza bhi aa rha h
    thanks for this................
    love from GWAIOR (MADHYA PRADESH)

  • @moviesbuddy4228
    @moviesbuddy4228 3 ปีที่แล้ว +3

    Bhai main cheez thank u so much for zooming the program while typing ... Whenever the size is small it's difficult to see .. but next moment u zoom (ctrl +) it and u make everything easy , enjoyable and intresting ...❤️❤️❤️❤️👍👍🙏
    Thank u so much

  • @Shivangidev2022
    @Shivangidev2022 3 ปีที่แล้ว +2

    Superb class.... U r best programming teacher

  • @than0s869
    @than0s869 2 ปีที่แล้ว +2

    Harry bhai me to friend class ka concept bilkul bhi nhi janta tha but aapne bata diya, thank you 😊

  • @techwithpanwar1507
    @techwithpanwar1507 3 ปีที่แล้ว +1

    Best programming teacher on youtube.

  • @prathu7644
    @prathu7644 3 ปีที่แล้ว +6

    Thank you for your amazing content Harry bhai it helps a lot!!

  • @alpeshmakwana3497
    @alpeshmakwana3497 4 ปีที่แล้ว +5

    Sir, this tutorial is very helpful for me.👍🏻👍🏻

  • @ishanmusic677
    @ishanmusic677 11 หลายเดือนก่อน

    we can also do like--
    (for checking greater number in 2 classes)
    class A{
    int a;
    //here we have declared the function as a frind funtion
    friend check(int a,int b);
    public:
    void read(int val1){
    a=val1;
    }
    };
    class B{
    int b;
    friend check(int a,int b);
    public:
    void read(int val2){
    b=val2;
    }
    void check(int a, int b){
    if(a>b){
    cout

  • @tejashwinihosur1712
    @tejashwinihosur1712 2 ปีที่แล้ว +1

    The best best tutor I ever got...🙏🏻✨💫

  • @ManojKumar-wi2dn
    @ManojKumar-wi2dn 3 ปีที่แล้ว +19

    Nice video.But you didn't tell that why you placed calculator class above the complex class at time of error (at 5: 50). Because in stating we don't have to declare complex class at top and sum real function at bottom.And I got all points other than this and thanks for videos

    • @happysangwan4890
      @happysangwan4890 3 ปีที่แล้ว

      ya i also has same doubt. If u know now , then plz tell me.

    • @prateekkosta4758
      @prateekkosta4758 3 ปีที่แล้ว

      same doubt pls tell me

    • @katikalyani9107
      @katikalyani9107 2 ปีที่แล้ว +3

      By mistake he declared calculator class first,after that complex class. but in calculator class we have complex class as a datatype in one function which is not declared yet.So just declared complex class before calculator so that he doesn't get errors .
      Without re declaration you can just write calculator class after complex class.But sir explained alternative way if we don't want to change position of code.
      I guess 😀

    • @abhikgupta9312
      @abhikgupta9312 2 ปีที่แล้ว +7

      It's because when declaring the friend functions, for scope resolution you obviously need to write thr name of the class calculator... And there the compiler will throw an error.. So it needs to be declared first.

    • @Ayush_gupta0001
      @Ayush_gupta0001 ปีที่แล้ว

      because compile don't know what is sumrealcomplex, it we define calculator class below complex class it gives error
      .

  • @shreyashkashyap
    @shreyashkashyap 2 ปีที่แล้ว +3

    As always, AWESOME!

  • @sakalagamingyt3563
    @sakalagamingyt3563 2 ปีที่แล้ว +5

    /*
    By Bishal jaiswal
    Purpose : Practicing (friend class);
    */
    #include
    #include
    using namespace std;
    class X
    {
    int x1, x2;
    friend class Result;
    public:
    void setVal_X()
    {
    cout > x2;
    cout > x1;
    }
    };
    class Y
    {
    int y1, y2;
    friend class Result;
    public:
    void setVal_Y()
    {
    cout > y2;
    cout > y1;
    }
    };
    class Result
    {
    float actualDistance;
    public:
    void printDistance(X o1, Y ob1)
    {
    actualDistance = sqrt((o1.x2 - o1.x1) * (o1.x2 - o1.x1) + (ob1.y2 - ob1.y1) * (ob1.y2 - ob1.y1));
    cout

  • @LofiAniFams
    @LofiAniFams 2 ปีที่แล้ว +2

    this is so much complicated but finally i cleared it because i see this video 2,3 times atleast

  • @Sanchi_125
    @Sanchi_125 3 ปีที่แล้ว

    Just amazing, I am from westBengal👌👌👌

  • @tuntunewala
    @tuntunewala 3 ปีที่แล้ว +1

    1st time it did'nt clear so much but after watching the lecture 2nd time , all clear good work harry bhai>

  • @vanshmehta8091
    @vanshmehta8091 2 ปีที่แล้ว +2

    I guess in class calculator
    We wrote int add(int a, int b){
    return (a+b);
    is not really used to in program
    Also print function of class complex is not used . It can be used very well for smooth output and clearance.
    i wrote this comment after doing this lecture and practical experience.
    apologize if I'm wrong. My aim is not to provide any wrong info to anyone.

    • @UdyamAbhi
      @UdyamAbhi ปีที่แล้ว

      you said the right thing

  • @DarkWorld0000
    @DarkWorld0000 2 ปีที่แล้ว +3

    Alot of love from 🇵🇰🇵🇰🇵🇰

  • @Technical_Ninja
    @Technical_Ninja 2 ปีที่แล้ว +1

    Tume complexe number example use karke program understand bohot complex kr di

  • @niranjangupta8644
    @niranjangupta8644 3 ปีที่แล้ว

    Bro you teach us from C++ E Balagurysamy book but your teaching skill is effective and excellent.Thnak you

  • @saurabhniley5441
    @saurabhniley5441 ปีที่แล้ว

    thank you for teaching in such a natural way

  • @paragroy5359
    @paragroy5359 3 ปีที่แล้ว +1

    Nice explanation your videos are really good...please keep on making such videos.

  • @dhanasrikanisetti2263
    @dhanasrikanisetti2263 5 หลายเดือนก่อน

    finally samajh agaya sir it is something tricky to understand !!!

  • @ratnakantahanse2661
    @ratnakantahanse2661 4 ปีที่แล้ว +1

    Thank you so much ..... God will always help you .... For your kindness.......

  • @uttamkarmakarece3534
    @uttamkarmakarece3534 3 ปีที่แล้ว +2

    Thank you Harry bhaiya for this kind of amazing videos

  • @nirmalpurigoswami5253
    @nirmalpurigoswami5253 4 ปีที่แล้ว +3

    14:15 sum dhimaka complex😂😂

  • @anubhavakaxperience762
    @anubhavakaxperience762 3 ปีที่แล้ว +1

    Wow u explained it so good..like literally so good.thank u very much....

  • @ashutoshranjan4644
    @ashutoshranjan4644 ปีที่แล้ว

    c++ is amazing. It provides those things which are out of syllabus for java.

  • @ananddesai9020
    @ananddesai9020 3 ปีที่แล้ว +9

    4 time dekha Video ko Tab Jaake Samjha Mara Dimag Mujhse Kehta hain : kya Programmer banega re Tu 😔

    • @kushal6065
      @kushal6065 3 ปีที่แล้ว

      same😂😂😥

    • @akshaysatyam2
      @akshaysatyam2 3 ปีที่แล้ว

      I know few people who don't even try to learn and call themselves future programmers.

    • @ananddesai9020
      @ananddesai9020 3 ปีที่แล้ว

      So what can do guys 😥

    • @kushal6065
      @kushal6065 3 ปีที่แล้ว

      Of course programming is hard. It's definitely not an easy task. But you have to learn it every day without skipping a day and constantly grind yourself then you will understand little by little everyday. c++ is quite hard than other languages like python, javascript,etc. So don't give up yet.

    • @mahadevjagtap4640
      @mahadevjagtap4640 5 หลายเดือนก่อน

      ​@@ananddesai9020kya hua bhai bane ki nahi programmer

  • @the_uncommonman
    @the_uncommonman 4 ปีที่แล้ว +1

    Harry bhai your explanation are smooth as butter

  • @IDK-sk2yj
    @IDK-sk2yj 2 ปีที่แล้ว

    phalana and dhimana was O P... though that friend's class topics were easy to understand, and it was due to your explanation!

  • @satyamkushwaha7385
    @satyamkushwaha7385 3 ปีที่แล้ว +1

    Thank you so muchh sir!❤❤😍😎

  • @tanmayshingote3335
    @tanmayshingote3335 3 ปีที่แล้ว

    Harry hai to sab mumkin hai 😀❤️❤️

  • @kevaldonga6384
    @kevaldonga6384 3 ปีที่แล้ว +1

    I understood full concept in one go

  • @cartoonsondemand_
    @cartoonsondemand_ 4 ปีที่แล้ว +1

    Best explanation forever thanks for your big help

  • @abdullahalhuzaifi5244
    @abdullahalhuzaifi5244 9 หลายเดือนก่อน

    Awesome content and very easy to understand............

  • @mokshdharasharma5275
    @mokshdharasharma5275 4 ปีที่แล้ว +3

    You are a gem!!!!!!💟

    • @artishsharma7859
      @artishsharma7859 4 ปีที่แล้ว

      Why he is declaring calculator before complex plz explain

    • @sidhlover25
      @sidhlover25 2 ปีที่แล้ว

      hi

  • @farzanayeasminsumana4426
    @farzanayeasminsumana4426 2 ปีที่แล้ว +1

    Good one

  • @YouTubeSupporters
    @YouTubeSupporters 4 ปีที่แล้ว +4

    Bhi aap he batlay the agar declear kr rhe to ushke under ::--->
    (complex o1 , complex o2);
    Yha -> o1 ,o2. likeh ya nahi likhe koi farq nahi pdega.

  • @victorb22622
    @victorb22622 8 หลายเดือนก่อน

    9:21 हैरी की बातो से ऐसा लगता है जो फनी वे में बात करु तो , कोई आदमी, एक एक करके पकोड़े बनाने की रेसिपी बताता हो ,और बीच बीच में कहे की ये चीज याद रखो ,ये याद रखो ।जब हम पूछे की भाई पकोड़े की रेसिपी क्यू याद रखे हमे तो चाय बनानी है ,तो फिर वो कहेगा ,वो ठीक है लेकिन अभी ये पकोड़े की रेसिपी याद कर लो काम आयेगी।

  • @anshpradhan1954
    @anshpradhan1954 3 ปีที่แล้ว +1

    Thank u Harry Sir 🙏

  • @Ri-wan
    @Ri-wan 3 ปีที่แล้ว +1

    Very helpful for us😊

  • @rajatshukla2605
    @rajatshukla2605 2 ปีที่แล้ว

    Great Explanation. Thanks for the video!

  • @PlayLikePro327
    @PlayLikePro327 3 ปีที่แล้ว +1

    Sir mujhe kuch nhi ata tha c++ ..but ab bhut kuch aane laga h but..... practice ke liye concepts se related hw chahiye .....plx

  • @nikhilsarkar3657
    @nikhilsarkar3657 3 ปีที่แล้ว +1

    LOVE YOU HARRY BHAI!!!

  • @al-baghdadi7914
    @al-baghdadi7914 4 ปีที่แล้ว +1

    this video is going very complex to me

  • @aniruddahpaul5537
    @aniruddahpaul5537 ปีที่แล้ว

    This video is definitely one of the toughest ones I've come across so far.

  • @ShivamMishra-xd8nn
    @ShivamMishra-xd8nn 8 หลายเดือนก่อน +1

    see despite of just forwarding declaration of complex class above than calculator class . We select to define the complex class and then calculator class. In this way we have full definition of complex class so we can access it directly in calculator function. Isn't it??

  • @Mazakare98
    @Mazakare98 2 ปีที่แล้ว

    Sir ji you r great thank u... 🌟

  • @Rohit-rt1lx
    @Rohit-rt1lx 3 ปีที่แล้ว

    Harry bhai, you are such a genius 👍

  • @harshaltiwari5812
    @harshaltiwari5812 2 ปีที่แล้ว

    like your content...truly helping me but....not saying monitization ko puri tarah band krdo.. ..pr ads 5 ki jagah agr 2-3 ads aate to learning or easy ho jati

  • @Sujit_Badgujar
    @Sujit_Badgujar 3 ปีที่แล้ว

    @CodeWithHarry bhai code likhte vaqt zoom kiya karo, bahot badiya kam hoga

  • @sasuke3737
    @sasuke3737 4 ปีที่แล้ว

    i know all these but theres always smthing new u would learn from his video.

  • @diveshkumar5218
    @diveshkumar5218 4 ปีที่แล้ว +1

    bohot hard harry bhai.
    💜
    💜💜
    💜

  • @learncode6180
    @learncode6180 3 ปีที่แล้ว +1

    Best course ❤️🙏

  • @mannnanshaikh7608
    @mannnanshaikh7608 3 ปีที่แล้ว +2

    Harry Sir ,
    You tech the c++ very well and i really appreciate your work.
    but i noticed that the videos are take too long to evaluate the small topic.
    so i really appreciate if u solve this issue and give us more content in future like this.
    Thanks in advance .

  • @garvittyaginawla4577
    @garvittyaginawla4577 2 ปีที่แล้ว

    THANKS 🙏 HARRY BHAIYA
    FOR AMAZING VIDEOS

  • @RohanDasRD
    @RohanDasRD 4 ปีที่แล้ว +17

    Classy Tutorial..

    • @anoopkumarshukla6808
      @anoopkumarshukla6808 4 ปีที่แล้ว +2

      Rohan Das ..Do you know sir personally ?? he has mentioned your name in many videos :)

    • @dangergamimg1933
      @dangergamimg1933 4 ปีที่แล้ว +3

      Omago rohan das mil gya.

    • @abhijitsingh9235
      @abhijitsingh9235 4 ปีที่แล้ว +3

      @@dangergamimg1933 😂😂😂

    • @programmingwithjavascript3579
      @programmingwithjavascript3579 4 ปีที่แล้ว +1

      Yahi hai rohandas iske Chanel par jaake dekho isne code with harry ko add rakha hai 😂😂😂

  • @fassimaryam1405
    @fassimaryam1405 2 ปีที่แล้ว

    Thankyou Soo much 💙

  • @abhayupparwal3888
    @abhayupparwal3888 2 ปีที่แล้ว

    Enjoying your video.
    Thank you

  • @anjalirani3239
    @anjalirani3239 2 ปีที่แล้ว

    Thank you harry ❤❤❤
    Pitradevsanrakshnam 😂

  • @abrarahmad3897
    @abrarahmad3897 ปีที่แล้ว

    Hey harry, I just wrote the code for making an entire class as a friend and that's the code below, kindly check it and suggest some improvements:
    code:
    #include
    using namespace std;
    // creating a class complex to handle the complex numbers
    class complex; // by forward slashing
    // creating a class calculator to handle the mathematical functions
    class calculator{
    public:
    void sumcomplex(complex c1,complex c2); // by forward slashing
    };
    // defining the complex class over here
    class complex{
    int a,b;
    public:
    void setnumber(int x,int y);
    // making an entire class as a friend
    // all functions of the class calculator can now access the private data of the class complex
    friend class calculator;
    };
    void complex :: setnumber(int x , int y){
    a = x;
    b = y;
    cout

  • @manojverma245
    @manojverma245 2 ปีที่แล้ว

    Thanks a lot ❤️❤️❤️❤️

  • @sanketsbrush
    @sanketsbrush 9 หลายเดือนก่อน

    Boilerplate video is worth watching. It saves lot of time

  • @sanyamsharma350
    @sanyamsharma350 2 ปีที่แล้ว

    this man is making these hard topics as easy as watching a intresting vine, one like for him 👍

  • @yashdongre1752
    @yashdongre1752 3 ปีที่แล้ว +1

    Thanku bhaiya

  • @mehndi.6236
    @mehndi.6236 ปีที่แล้ว

    Thank you sir 🙏🙏

  • @zeeshanameer8
    @zeeshanameer8 11 หลายเดือนก่อน

    Well done boss😊

  • @stormbreaker9913
    @stormbreaker9913 3 ปีที่แล้ว

    Bhai apke batane ka tarika jo hai na vo lakhi karodo mei ek hai bhai😁 and I can't belive ki yesa lecture v free mei hai.baki ke toh paise leke bhi itna deep nahi batate

  • @excel8280
    @excel8280 3 ปีที่แล้ว +5

    After finishing your C 15 hours tutorial within 30 days now watching this :)

    • @akashdeep2930
      @akashdeep2930 2 ปีที่แล้ว

      Was it helpful? Can I prefer watching that?

  • @mixxff8035
    @mixxff8035 3 ปีที่แล้ว

    Sir m aapke playlist se hi c language seekha hu or usme bohot hi mja aaya or mujhe lgta h ki h aap c++ m kuchh jyada hi hard chl rhe h

    • @mixxff8035
      @mixxff8035 3 ปีที่แล้ว

      Or kuchh kuchh smjh bhi km aa rha h

  • @saarthakmishra5109
    @saarthakmishra5109 ปีที่แล้ว +1

    Course sach mein bahut achha hai, but views ka difference dikh raha hai first video aur current video mein...bohot log quit kr dete hai

  • @himanshumandal7565
    @himanshumandal7565 2 ปีที่แล้ว +80

    pinky tum mera msg dekh rhi ho toh mujhko maaf kardo coding woding mere bas ka nhi.....shadi karke khus rehna kisior se kyu ki abba toh nhi manenge

    • @theflash34529
      @theflash34529 ปีที่แล้ว +4

      Moye moye 😢😢

    • @ashwinverma2030
      @ashwinverma2030 ปีที่แล้ว +7

      😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂 0:31

    • @littlenishad912
      @littlenishad912 ปีที่แล้ว +1

      Bechari pinki

    • @Deepanshutyagi-q2m
      @Deepanshutyagi-q2m ปีที่แล้ว +1

      Bhai tum yai jajha mila ha ashki koo. Inti social media application haa bro

    • @vishalk568
      @vishalk568 ปีที่แล้ว +1

      RIP Pinky 🎉

  • @Rehulzretouch
    @Rehulzretouch 3 ปีที่แล้ว

    Bhai bass banate jaao u r a reason of revolution

  • @ganeshkpawar9919
    @ganeshkpawar9919 ปีที่แล้ว

    Majjaa AAA Raha hai bhaiya ❤

  • @engineerbhai7642
    @engineerbhai7642 4 ปีที่แล้ว +1

    Thanks.

  • @Lifeisgood108-33
    @Lifeisgood108-33 3 ปีที่แล้ว

    Harry bhai aap great ho 🙂

  • @ayushwalker2003
    @ayushwalker2003 4 ปีที่แล้ว

    Thank you so Harry bhaiya, for making such informational video..

  • @kshitizsinghchauhan7464
    @kshitizsinghchauhan7464 3 ปีที่แล้ว +8

    Why can't we keep the complex class before Calculator class and forward declare the calculator class ?

    • @monikashailesh9989
      @monikashailesh9989 3 ปีที่แล้ว

      listen to the video once again and you will understand it. He has explained everything very nicely.

    • @chhavinath8961
      @chhavinath8961 3 ปีที่แล้ว +2

      even we forward declared calculator class but yet the function we are making friend function in complex class is not declared yet

    • @RoshanSingh-vu6si
      @RoshanSingh-vu6si 3 ปีที่แล้ว

      i have the same doubt
      if it is cleared please enlighten me

    • @prateeklikhar1893
      @prateeklikhar1893 3 ปีที่แล้ว

      @@RoshanSingh-vu6si same doubt pls clear anyone ,harry bhai syad samjhana bhul gye

    • @prateeklikhar1893
      @prateeklikhar1893 3 ปีที่แล้ว

      its works and doesnot need declaration of calculator has it is already in complex,just try yourself

  • @machindrachavan9263
    @machindrachavan9263 2 ปีที่แล้ว

    Thank YOu Harry Bhai .

  • @rounakkumar6971
    @rounakkumar6971 3 ปีที่แล้ว

    very helpfull video .great work👍👍👍👌👌