C++ user defined functions explained 📞

Поділитися
Вставка
  • Опубліковано 14 гру 2024

КОМЕНТАРІ • 31

  • @BroCodez
    @BroCodez  2 роки тому +23

    #include
    void happyBirthday(std::string name, int age);
    int main()
    {
    // function = a block of reusable code
    std::string name = "Bro";
    int age = 21;
    happyBirthday(name, age);
    return 0;
    }
    void happyBirthday(std::string name, int age){
    std::cout

  • @yellowhellow-wi9gi
    @yellowhellow-wi9gi 2 місяці тому +5

    you explained it so goood ı've never understand the functions this well thank you

  • @KapeelManek
    @KapeelManek 15 днів тому +6

    tip from papa please use using namespace std;

  • @FrederikWollert
    @FrederikWollert 8 місяців тому +11

    I really like your C++ series. Keep it up. Please make more C++ Videos. So, let's defeat the UA-cam algorithm.

  • @AhmedHShoeir
    @AhmedHShoeir Місяць тому +3

    God bless you

  • @Mostafa_Kabici
    @Mostafa_Kabici 2 місяці тому +1

    incredible speed of code execution

  • @blazing-h1l
    @blazing-h1l Місяць тому +1

    thank you amazing video

  • @johnny_ow
    @johnny_ow 7 місяців тому +4

    Simple weight calculator. - Pretty efficient.
    #include
    void weightCalc() {
    int mass ;
    double weight ;
    std::cout mass;
    std::cout

  • @elizabethsexton1656
    @elizabethsexton1656 2 місяці тому

    Thank you sm🙏🏼

  • @tanvirsahrierjishan778
    @tanvirsahrierjishan778 5 місяців тому +1

    is any good to use functions below main?

    • @Ctrl-Z-Renders
      @Ctrl-Z-Renders 3 місяці тому +1

      it doenst change anything, apart from being below the main function visualy.

  • @محمدالعريقي-خ4ج
    @محمدالعريقي-خ4ج 16 днів тому

    Thank you

  • @joud4508
    @joud4508 Місяць тому +1

    احبك✋️

  • @memezilla2964
    @memezilla2964 6 місяців тому +3

    what is void?

    • @Ctrl-Z-Renders
      @Ctrl-Z-Renders 3 місяці тому +3

      no return type (does not give anything back)

    • @Anonymous-st1vk
      @Anonymous-st1vk 3 місяці тому +1

      if you write int in place of void, it means the function return integer when executed (like the main function), void means it a funtion that doesn't return anything, other datatypes can also be put here

  • @taigo5766
    @taigo5766 2 роки тому +14

    finally, hello world v2.0
    #include
    void hello(std::string world);
    int main()
    {
    std::string world = "Hello, World!";
    hello(world);
    return 0;
    }
    void hello(std::string world)
    {
    std::cout

    • @rivazmardani
      @rivazmardani 2 роки тому

      good tiigao chan

    • @Yureki
      @Yureki 2 роки тому

      @@rivazmardani *chan =}}}

  • @sviatoidyx4672
    @sviatoidyx4672 7 місяців тому +2

    }
    void find_x(double a, double b, double c ){
    double x1;
    double x2;
    double D = pow(b,2) - 4*a*c;
    if (D>0){
    x1=(-b+sqrt(D))/2*a;
    x2=(-b-sqrt(D))/2*a;
    std::cout

  • @Hasnain-mahdi
    @Hasnain-mahdi 8 годин тому

    Gui in c--

  • @artemzakharchuk2842
    @artemzakharchuk2842 Рік тому

    #include
    using namespace std;
    void happyBoy(bool IsHappy, string name);
    int main() {
    bool IsHappy = true;
    string name = "Andrew";
    happyBoy(IsHappy, name);
    return 0;
    }
    void happyBoy(bool IsHappy, string name);
    cout

  • @christiangaming3276
    @christiangaming3276 Рік тому

    #include
    void song(int age = 19, std::string Name = "Christian") {
    std::cout