C_53 Introduction to Two Dimensional (2D) Arrays in C

preview_player
Показать описание
In this lecture we will learn:
- Need of 2D Arrays
- What are 2D arrays(Two Dimensional Arrays)?
- how to declare 2d Arrays in C?

*********************************************

Connect & Contact Me:

Telegram Group Link: Jenny's Lectures
*******************************************

More Playlists:

Tags:
arrays in c, what is array, introduction to arrays in c, c programming, computer science, engineering, programming languages, c language, 2d arrays, two dimensional array in c

#cprogramming #coding #arraysinc #clanguage #jennyslectures
#2DarraysinC
#twodimensionalarrays
Рекомендации по теме
Комментарии
Автор

Thank you mam for helping middle class students who can't afford coaching.

devalsrivastava
Автор

13:19

total elements = 14 i.e(2x7=14)
size of float in c = 4
total size for this array = 14x4=56 bytes

total elements = 28 i.e(4x7=28)
size of int in c = 4
total size for this array = 28x4=112 bytes

balkrishnabane
Автор

Madam, I wanted to let you know that your lecture was exceptionally insightful.
Your unique approach and examples really resonated with me, and I found it extremely helpful.
Thank you for such a great class!!

LasalBinuwara
Автор

One problem i have always had is that those who understand something are unable to explain it in a way that I can understand.But that problem is no more since I came here.Good work.Much love from kenya🇰🇪

yourworldandmine
Автор

please complete C programming mam.dont leave it incomplete because पूरे यूट्यूब पर सिर्फ आपका लेक्चर ही समझ आता है मुझे अगर आप बंद कर दोगी तो फिर मैं कभी सीख नही पाऊंगा।

indianfighter
Автор

If there may any Award by YouTube for Best Teacher.... It may goes to you
Thank You Ma'am 🙏

PrateekMishra.
Автор

total elements = 14 ;
size of float in c = 4 ;
total size for this array = 56 byts ;

jitendrapratapsingh
Автор

Total elements = 2 rows * 7 columns = 14 elements
float size = 4 bytes
total bytes 4*14 = 56 bytes

saishashi
Автор

For float mark[2] [7];
Bytes are: 56
For int a[4] [7];
Bytes are: 112

abdulkarimshaikh
Автор

you are a gifted your explanation is superb and easy to comprehend

ezekielsamuel
Автор

For float mark[2] [7];
total elements: 14
Bytes are: 56
For int a[4] [7];
total elements: 28

Bytes are: 112

tops
Автор

Thank you mam for helping middle-class students who can't afford to coach. 😊

alltoall
Автор

float a[2, 7] can store 14 elements and they will take 56 bytes.
Checked on IDE you can declare array of floats

int a[4, 7] can store 28 elements and they will take 112 bytes.

maryannemuthoni
Автор

Float can store here=>2×7=>14 elements
Size of float type array is=Sizeof(float)×14

Aptitude_guide
Автор

Total Elements we can store are 2X7 = 14
Size Allocated is 14X4 = 56
since Size of Float is 4 bytes

hariparuchuru
Автор

Maim answer of last question is total no of elements are 14 and no of byte allocated are 56.( Because no of elements in 2d array= m×n where m is row size and n is column size and no of byte allocated is = total no of elements in 2d array × size of data type that we use.

SatyamSharmabcebgp
Автор

float a[2][7]:-
✓Size of array or no of elements
= 2*7=14
✓it should allocate 14*4=56
Int a[4][7]:-
✓4*7=28 elements
✓28*4=112bytes

Msd
Автор

mam is so beautiful that i forget learning c and started focusing on philosphy(how someone have everything looks, brain etc, is it in unfair)

Fallforme
Автор

Size of array=28
Memory allocated = 112 byte.

badarmunir
Автор

kal yehi pane wale hain class mai...I studied it in advance👍☺️

ignotums