CPP program of function overloading, area

Поделиться
HTML-код
  • Опубликовано: 4 ноя 2024

Комментарии • 28

  • @sahibealam6039
    @sahibealam6039 2 года назад +1

    Bhut pasand aya hai ye video

  • @Nickname1234_
    @Nickname1234_ 4 года назад +1

    U r amazing ...I gave 2 months to ur videos ...just watching one video a day ...it was great . U r the best

    • @MicroNG
      @MicroNG 3 года назад

      Kindly check the details

    • @Nickname1234_
      @Nickname1234_ 3 года назад

      @@MicroNG which kind of details?

  • @pratyushtripathi1728
    @pratyushtripathi1728 Год назад +1

  • @preetisanodiya6150
    @preetisanodiya6150 3 года назад +1

    Sir please make vedio on .....program to show monthly expenses of a person using function overloading in C++........ Please sir 🙏

    • @MicroNG
      @MicroNG 3 года назад

      kindly check the details

  • @multitelentworksshivanipatelzz
    @multitelentworksshivanipatelzz 8 лет назад +2

    and 11 g express edition me sql quries bhi start karona sir plzzz

  • @travelworld-milindmalbari7678
    @travelworld-milindmalbari7678 8 лет назад

    nice sir i need sql practicals sir please teach us sir

  • @amansharma-ww7tv
    @amansharma-ww7tv 6 лет назад

    sir kya hum ek hi program me 2 aise function bana sakte h jiska nam same ho arguments same type ke pass ho ....like ek me hum check kre area of circle and 2nd me check kre area of semi circle.............

  • @krishnakarpe409
    @krishnakarpe409 7 лет назад

    best video sir

  • @sumitsengupta4028
    @sumitsengupta4028 4 года назад

    Thank you sirg

    • @MicroNG
      @MicroNG 3 года назад

      kindly check the details

  • @huzaifkhan1499
    @huzaifkhan1499 6 лет назад

    koi book bta dain jis mai problems hon taky apnay concept sai kar sakhain

  • @multitelentworksshivanipatelzz
    @multitelentworksshivanipatelzz 8 лет назад

    sir agar circle rectangle k sath triangle ka bhi are nikal na ho to declartion or function define kese karege?
    plz sir i m wait yuor reply......

    • @hemantkumarvaishnav5219
      @hemantkumarvaishnav5219 6 лет назад

      multitelentsworks shivani patelzzz agar chaho m help kru

    • @huzaifkhan1499
      @huzaifkhan1499 6 лет назад

      us mai do variable bnain gay int base,height....phr coutbase>>height;

    • @huzaifkhan1499
      @huzaifkhan1499 6 лет назад

      float area(float,float);

    • @kashba
      @kashba 4 года назад

      sqrt(s(a-s)(b-s)(c-s))
      where s = (a+b+c)/2

    • @kashba
      @kashba 4 года назад

      #include
      #include
      using namespace std;
      float area(int r) {return(3.14*r*r);}
      int area (int l,int b){return(l*b);}
      int area( int a,int b,int c)
      {
      int s=(a+b+c)/2;
      return(sqrt(s*(s-a)*(s-b)*(s-c)));
      }
      int main()
      {
      int r,l,b,a1,a2,a3;
      cin>>r; \\ radius of circle
      cin>>l>>b; \\ length breadth of rectangle
      cout

  • @NatkhatToliofficial
    @NatkhatToliofficial 7 лет назад

    Hii sir
    using namespace std
    ye kya kaam karta hai
    Ese keun use kate hai

    • @amansharma-ww7tv
      @amansharma-ww7tv 6 лет назад

      it means we say that we read things by default. If we say using namespace std; then we say: If we come across an object name that doesn't exist in our current namespace, check if there exists a namespace std in which it does exist, and use that object. Thus, it doesn't really add a function, it is the include that "loads" cout, cin, endl and all the like.

  • @RashidKhan-vc6lk
    @RashidKhan-vc6lk 6 лет назад

    Sir , I want a bundle of c++ programs for practice. From where can I get ???

    • @manshu284
      @manshu284 5 лет назад +3

      go for geeksforgeeks.org
      codechief,hackerearth,and many more if u google

  • @shyamkachhadiya4964
    @shyamkachhadiya4964 6 лет назад +1

    more programs :)

  • @rahulrajput2641
    @rahulrajput2641 7 лет назад

    sir why are u writing 2 times getch()???