C++ arrays explained 🚗

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

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

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

    #include
    int main()
    {
    std::string cars[3] = {"Corvette", "Mustang", "Camry"};
    std::cout

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

    Heck yes. Keep these updated vids coming pls. My C++ term starts next week :3

  • @FrederikWollert
    @FrederikWollert 9 หลายเดือนก่อน +6

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

  • @Rashed_16
    @Rashed_16 5 หลายเดือนก่อน +65

    someone tells him about using namespace std;

    • @theday56
      @theday56 5 หลายเดือนก่อน +7

      he mentioned in another vid why he doesnt use it but i dont remember

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

      @@theday56 oh okay

    • @Lokvie
      @Lokvie 4 หลายเดือนก่อน +8

      It might be useful for some projects, but it is a bad practice.
      It makes the code harder to read for others and also makes it harder for you to write when you have to work on someone elses project, that doesn't use ''namespace std;''

  • @batknight2241
    @batknight2241 หลายเดือนก่อน +1

    mann thanks alot i was having a real hard time understanding arrays, u explained in the most easiest way. i got an exam tomm u a life saver

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

    The edit at 5:18 was so smooth

  • @BioElectricDuck
    @BioElectricDuck 2 หลายเดือนก่อน

    1:22 was so good

  • @jessie.6507
    @jessie.6507 16 วันที่ผ่านมา

    what’s the difference between a vector and an array

  • @tavares._art
    @tavares._art ปีที่แล้ว +5

    using namespace std
    int main() {
    int shoeSize [6] = { 33, 35, 37, 39, 41, 43}
    cout shoeSize

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

      man my size is not even close to what you entered

    • @tavares._art
      @tavares._art 2 หลายเดือนก่อน +1

      @@waafQ3 lol

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

    #include
    using namespace std;
    int main() {
    string names[8] = {"Artem", "Eva", "Yula", "Polina", "Lesha", "Bogdan", "Nikita", " Dima"};
    cout

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

      It's a good start, but you can reduce the amount of lines doing:
      #include
      using namespace std;
      int main() {
      string names[] = {"Artem", "Eva", "Yula", "Polina", "Lesha", "Bogdan", "Nikita", "Dima"};
      for(std::string name : names){
      cout

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

    Array[ "good job"];

  • @MuzoGonViral
    @MuzoGonViral 5 หลายเดือนก่อน +4

    #include
    #include
    using namespace std;
    int main()
    {
    string car[]={"toyota, Nissan,isuzu"};
    cout

  • @ai-scifn
    @ai-scifn 6 หลายเดือนก่อน

    Sir zoom out the screen

  • @CMT-p6q
    @CMT-p6q หลายเดือนก่อน

    should put Camaro or challenger instead of Camry

  • @oximas-oe9vf
    @oximas-oe9vf 2 ปีที่แล้ว

    what would happen if you try putting accessing an element out side the array in c++
    i.e.(std::cout

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

      uhh that shouldn't even happen ,you are only meant to get a warning that this value doesn't exist

    • @MindOfT1m
      @MindOfT1m 6 หลายเดือนก่อน +1

      yeah wtf 🤣

  • @unruly_ronin
    @unruly_ronin 2 หลายเดือนก่อน

    string mages[ ] = {"Master", "S-Class", "Mage"};

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

    string Brands[] ={Nike, Adidas, Puma, Fila,}
    if(Condition ==true)
    {
    Brands[0] = "Sketchers";
    }

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

    string bikes[2];
    cout

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

      you can do sizeof(bikes). it returns the length of the array, in this case 3

    • @jesusmarin6668
      @jesusmarin6668 2 หลายเดือนก่อน

      Yeah I was going to say that but you already now that

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

    double car[] = {1.99, 4.57, 19.99, 100};
    std::cout

  • @estherolayade4723
    @estherolayade4723 2 หลายเดือนก่อน

    string drinks = {"Milkshake,", "Water", "Soda", "Smoothie", "Juice" };
    std: : cout

  • @parpaperchimp
    @parpaperchimp 10 หลายเดือนก่อน

    #include
    int main (){
    int pizza = 1;
    int neutral = 2;
    int choise;
    Std::string neutralmenu[]= {“meat”, “pasta”,”bread”}
    pizzamenu[]={“margherita”,”marinara”,”capricciosa”};
    std::string
    std::cout

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

    #include
    int main()
    {
    std::string colors[] = {"Red", "Blue", "Yellow", "Pink", "Black", "Gray", "Green"};
    std::cout

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

    #include
    using namespace std;
    int main()
    {
    double prices[] = {3.40 , 4.33, 22.50};
    prices[0] = 30;
    cout