C 2D arrays ⬜

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

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

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

    #include
    int main()
    {
    // 2D array = an array, where each element is an entire array
    // useful if you need a matrix, grid, or table of data
    /*
    int numbers[2][3] = {
    {1, 2, 3},
    {4, 5, 6}
    };
    */
    int numbers[2][3];
    int rows = sizeof(numbers)/sizeof(numbers[0]);
    int columns = sizeof(numbers[0])/sizeof(numbers[0][0]);
    printf("rows: %d
    ", rows);
    printf("columns: %d
    ", columns);
    numbers[0][0] = 1;
    numbers[0][1] = 2;
    numbers[0][2] = 3;
    numbers[1][0] = 4;
    numbers[1][1] = 5;
    numbers[1][2] = 6;
    for(int i = 0; i < rows; i++)
    {
    for(int j = 0; j < columns; j++)
    {
    printf("%d ", numbers[i][j]);
    }
    printf("
    ");
    }
    return 0;
    }

  • @numa8202
    @numa8202 วันที่ผ่านมา +1

    thanks bro, its much easier to understand than college.

  • @provokator-provocateur7603
    @provokator-provocateur7603 3 ปีที่แล้ว +70

    This is better than Netflix. Im waiting every new episode.

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

    This was so helpful! I am an IT student and was having trouble understanding 2D arrays. This is the best video I found .

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

    Helllo, I'm a student from Russia and I'm learning computer sciense, I want to say you help me so much and I hope your chanell will progress much more, good luck!

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

      Ну как сдал?

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

    BRO this was a game changer. seriously, thank you

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

    This is one of best language learning channel tutorial i know

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

    hi, I'm hoping that you can also make a compilation of this C course, just like what you did in your java tutorial. btw, thank you for these amazing tutorials.

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

    fery good fideo vro keep it in the up

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

    Thanks for helping me out. Greetings from Serbia

  • @AW-CODE
    @AW-CODE 4 หลายเดือนก่อน +1

    great work keep it up
    🤓

  • @mahaveersingh-sn1eh
    @mahaveersingh-sn1eh 3 วันที่ผ่านมา

    Thanks bro u cleared my doubt ❤

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

    Thanks.i like how you explain it and going on details and explain where things are from or what is for, for example the first for(i) is rows and the seconds is columns(j).
    good job.

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

    What my lecturer does in 2 hours you do it in 5minutes😂

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

    Can you make a Django course soon? Thats what I'm really waiting for!

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

    hi, can we use:
    # include
    # define rows
    # define columns
    and then use these defined sizes in our array and loop?

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

    Thank you ❤

  • @MainulHossainAnik
    @MainulHossainAnik 5 วันที่ผ่านมา +1

    DONE❤❤

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

    good vid!

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

    Hi! Great video! I have a question. How does the code change from this if I need for a user to input the size of rows and columns,and not be given like in this video?
    Any help would be great,tnx! :)

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

      #include
      int main() {
      int rows, columns;
      printf("Enter the number of rows: ");
      scanf("%d", &rows);
      printf("Enter the number of columns: ");
      scanf("%d", &columns);
      int numbers[rows][columns];
      for (int i = 0; i < rows; i++) {
      for (int j = 0; j < columns; j++) {
      printf("Enter the value for element [%d][%d]: ", i, j);
      scanf("%d", &numbers[i][j]);
      }
      }
      printf("
      ");
      for (int i = 0; i < rows; i++) {
      for (int j = 0; j < columns; j++) {
      printf("%d ", numbers[i][j]);
      }
      printf("
      ");
      }
      return 0;
      }
      In this example, we first declare the rows and columns variables, and then use scanf() to read in the values from the user. We then declare the numbers array using the values of rows and columns.
      Next, we use two nested loops to iterate over each element of the array and prompt the user to enter the value for that element using scanf(). Finally, we print out the entire array using two nested loops and the printf() function.

    • @GigaChad-zx9hj
      @GigaChad-zx9hj ปีที่แล้ว +2

      @@farisraid7588 Thanks mate

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

    thanks for the video

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

    Great!

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

    It took all the way up until I saw "print" to realize this wasn't C++. T_T

  • @SHADOW-du7yf
    @SHADOW-du7yf 3 ปีที่แล้ว

    Can you create a tutorial on how to create a website. Like what program to use and what languages you need to know .Would be a great video

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

    Can anyone explain why to get the size of column we need to specificy [0] then divide to [0][0]???

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

      This is how you can calculate the length of an array in C. First, obtain the size of the entire array (in bytes) and then divide it by the size of a single element (also in bytes). Since all elements in an array are of the same size, you can use any element to perform this calculation, and the result should always be an integer representing the total number of elements in the array.
      For a 2D array, to find the number of columns, you can take the array for any row (a common practice is to use the first element of the array, i.e., numbers[0]). The size of this row (or columns array) is sizeof(numbers[0]). To get the size of a single element within the columns array, use sizeof(numbers[0][0]), which refers to the first element of the first row (or the column itself). Finally, the length (or number of elements) of the columns array is sizeof(numbers[0]) / sizeof(numbers[0][0]). This should give the same length for any row in the 2D array, as each row contains the same number of columns.

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

      yeah i was thinking the same. and for now i am not interested on it but thanks to @heitor4191 i think i got it better.

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

    why does my code not run unless i add in the
    printf("rows: %d
    ", rows);
    printf("columns: %d
    ", columns);

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

      it runs but you cant see it. prontf is just to show you it happening. but can happen and dont show you what is done.

  • @DamienLawrence-z7s
    @DamienLawrence-z7s 3 หลายเดือนก่อน

    Declaring array mentioning number of rows and columns.Why calculating number of rows and columns then?
    If we add an extra row or or column manually editing the code then why need to calculate number of rows and coumns on such a way?

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

    Can u plz do the same for Android

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

    Is there is any videos about data science ???

  • @mrawesome7739
    @mrawesome7739 17 วันที่ผ่านมา

    Where's malloc?????

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

    It would be better if u spaced these out over a few days instead of uploading them all at once.

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

    Bro the index of 2D arrays don't start at 0?

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

    pls some java tuts?

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

    Please put Arabic subtitles in TH-cam settings in your videos

    • @Baka-mx4yc
      @Baka-mx4yc 2 ปีที่แล้ว

      Allahuuu aknarrrr

    • @Konrado28
      @Konrado28 16 วันที่ผ่านมา

      What if he isn't Arabic and doesn't know this language?

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

    It wont print, and i dont know if its the shitty online compiler im using.