C++ variable scope explained 🌎

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

КОМЕНТАРІ • 13

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

    #include
    int myNum = 3; //global
    void printNum();
    int main()
    {
    int myNum = 1; //local
    printNum();
    std::cout

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

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

  • @hehefunny9129
    @hehefunny9129 2 роки тому +1

    Yu the best ❤️

  • @yahyaarfaoui8526
    @yahyaarfaoui8526 Рік тому +5

    std::cout

  • @oximas-oe9vf
    @oximas-oe9vf 2 роки тому +3

    what do you mean by " "pollutes" the global namespace " ?

    • @BurninVinyl
      @BurninVinyl 9 місяців тому +1

      Re-watch about namespace. In C++ global variables can potentially pollute the namespace by making it more difficult to disambiguate between variable names and other entities with the same name. This can lead to code that is harder to read and maintain. It's generally recommended to use namespaces or other scoping mechanisms to avoid this issue.

  • @gamsterilyass2952
    @gamsterilyass2952 6 місяців тому

    ❤ ❤

  • @Zoetobe
    @Zoetobe Місяць тому

    I’m slowly bro-wing lol

  • @Nightmare-bo7xi
    @Nightmare-bo7xi 4 місяці тому

    so what is printNum and how is it related to myNum

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

    yo

  • @parpaperchimp
    @parpaperchimp 10 місяців тому

    #include
    int P =3.14;
    int main(){
    std::cout

  • @wlsedlacek
    @wlsedlacek Рік тому +1

    comment = rand(random_comment) % 100;

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

    std::cout