C 2D arrays ⬜

  Рет қаралды 98,177

Bro Code

Bro Code

Күн бұрын

Пікірлер: 42
@BroCodez
@BroCodez 3 жыл бұрын
#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; }
@provokator-provocateur7603
@provokator-provocateur7603 3 жыл бұрын
This is better than Netflix. Im waiting every new episode.
@doochow9962
@doochow9962 Жыл бұрын
This was so helpful! I am an IT student and was having trouble understanding 2D arrays. This is the best video I found .
@diusepausm
@diusepausm 3 жыл бұрын
This is one of best language learning channel tutorial i know
@thomasplatt7329
@thomasplatt7329 2 ай бұрын
BRO this was a game changer. seriously, thank you
@itchybakerzz5101
@itchybakerzz5101 3 жыл бұрын
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.
@Programscape
@Programscape 3 жыл бұрын
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 Ай бұрын
Ну как сдал?
@republicofserbia
@republicofserbia Жыл бұрын
Thanks for helping me out. Greetings from Serbia
@JafarAlQudah
@JafarAlQudah Жыл бұрын
fery good fideo vro keep it in the up
@slevinshafel9395
@slevinshafel9395 23 күн бұрын
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.
@AW-CODE
@AW-CODE 4 ай бұрын
great work keep it up 🤓
@stanleywambani860
@stanleywambani860 11 ай бұрын
What my lecturer does in 2 hours you do it in 5minutes😂
@yigitdogan2k
@yigitdogan2k 10 ай бұрын
hi, can we use: # include # define rows # define columns and then use these defined sizes in our array and loop?
@celestialcamel1959
@celestialcamel1959 3 жыл бұрын
Can you make a Django course soon? Thats what I'm really waiting for!
@andrejpoljakovic5482
@andrejpoljakovic5482 2 жыл бұрын
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 Жыл бұрын
#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 Жыл бұрын
@@farisraid7588 Thanks mate
@tescenmo_Ed
@tescenmo_Ed 3 жыл бұрын
Thank you ❤
@joeface448
@joeface448 7 ай бұрын
It took all the way up until I saw "print" to realize this wasn't C++. T_T
@rmsabsal1810
@rmsabsal1810 Ай бұрын
Can anyone explain why to get the size of column we need to specificy [0] then divide to [0][0]???
@heitor4191
@heitor4191 Ай бұрын
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 23 күн бұрын
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 8 ай бұрын
why does my code not run unless i add in the printf("rows: %d ", rows); printf("columns: %d ", columns);
@slevinshafel9395
@slevinshafel9395 23 күн бұрын
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.
@na0miiii__
@na0miiii__ 3 жыл бұрын
good vid!
@umutaydn6184
@umutaydn6184 Жыл бұрын
thanks for the video
@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?
@umachandeeswari2942
@umachandeeswari2942 2 жыл бұрын
Great!
@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
@sachinsaagar7531
@sachinsaagar7531 3 жыл бұрын
Can u plz do the same for Android
@magns2623
@magns2623 3 жыл бұрын
Is there is any videos about data science ???
@rendezvousonmemorylane
@rendezvousonmemorylane 3 жыл бұрын
It would be better if u spaced these out over a few days instead of uploading them all at once.
@Dovahkiin978
@Dovahkiin978 2 жыл бұрын
?
@luci1368
@luci1368 3 жыл бұрын
Bro the index of 2D arrays don't start at 0?
@ADAM_SGS
@ADAM_SGS 3 жыл бұрын
Please put Arabic subtitles in KZbin settings in your videos
@Baka-mx4yc
@Baka-mx4yc 2 жыл бұрын
Allahuuu aknarrrr
@javacoder2134
@javacoder2134 3 жыл бұрын
pls some java tuts?
@civicaverage796
@civicaverage796 Жыл бұрын
It wont print, and i dont know if its the shitty online compiler im using.
C array of strings🧵
2:54
Bro Code
Рет қаралды 86 М.
C pointers explained👉
8:04
Bro Code
Рет қаралды 207 М.
Правильный подход к детям
00:18
Beatrise
Рет қаралды 10 МЛН
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,6 МЛН
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 40 МЛН
2D Array Basics | C Programming Tutorial
14:10
Portfolio Courses
Рет қаралды 29 М.
Python 2D collections are easy ⬜
8:39
Bro Code
Рет қаралды 60 М.
C++ multidimensional arrays explained ⬜
7:41
Bro Code
Рет қаралды 15 М.
C++ 2D arrays (#20) ⌨️
11:26
Bro Code
Рет қаралды 12 М.
C nested loops ➰
5:18
Bro Code
Рет қаралды 55 М.
C arrays 🗃️
4:33
Bro Code
Рет қаралды 154 М.
Learn Any Programming Language In 3 Hours!
22:37
Code With Huw
Рет қаралды 601 М.
Java 2D arrays 🚚
8:06
Bro Code
Рет қаралды 193 М.
you will never ask about pointers again after watching this video
8:03
Dynamically Allocate A 2D Array | C Programming Tutorial
15:58
Portfolio Courses
Рет қаралды 41 М.
Правильный подход к детям
00:18
Beatrise
Рет қаралды 10 МЛН