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
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!!
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🇰🇪
please complete C programming mam.dont leave it incomplete because पूरे यूट्यूब पर सिर्फ आपका लेक्चर ही समझ आता है मुझे अगर आप बंद कर दोगी तो फिर मैं कभी सीख नही पाऊंगा।
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.
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.
👉Typically each integer or float number occupies 4 bytes of memory. 🫱So no.of elements in float [2][7] is 2*7=14 elements. And each element occupies 4 bytes , so 14 elements occupy 14*4 = 42.👍 Similarly , for int [4][7] has 4*7=28 elements and no.of Bytes occupied 28*4= 112 .👍
Mam you are best teacher i was not able to understand c language but you made me understand so much thanks mam . I hope mam you will lunch c++ series later
Please correct the previous video when you showed how to perform a binary search, in the video, you use :- while ( left < right ), doing this will never get to the last element, you should do like this :- while ( left
Thank you mam for helping middle class students who can't afford coaching.
!!!Data Structures & Algorithms series free now!!! : ruclips.net/video/IJvbleUsiXo/видео.html
yes, absolutely ......
@@amritpalkaur2114 what are you gonna do with C brother
Good bro
@@ff_hr c is known as the parent of all the languages.
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
Correct bro
Bro float size is 8
So it's 14*8 = 112
@@hemanthgowda2260 nope size of float in c is 4 bytes
@@amandeepsinghmandley6217 as maam took int as 4 bytes we should consider float as 8 bytes.
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!!
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🇰🇪
Abhi jyada ...kuchh ...nahi likhunga main
Bas aap English mein teach karte hain mam yahi sabse beneficial hai is time for me .
total elements = 14 ;
size of float in c = 4 ;
total size for this array = 56 byts ;
right
I am very happy!
You are super hero Teacher
Lv u mam for ur way of explanation
!!!Data Structures & Algorithms series free now!!! : ruclips.net/video/IJvbleUsiXo/видео.html
Total elements = 2 rows * 7 columns = 14 elements
float size = 4 bytes
total bytes 4*14 = 56 bytes
If there may any Award by RUclips for Best Teacher.... It may goes to you
Thank You Ma'am 🙏
nee modda
@@Aslesh05 Antha maata annav enti bro
please complete C programming mam.dont leave it incomplete because पूरे यूट्यूब पर सिर्फ आपका लेक्चर ही समझ आता है मुझे अगर आप बंद कर दोगी तो फिर मैं कभी सीख नही पाऊंगा।
🤣🤣🤣🤣🤣🤣
Bhai indian fighter neso acadmy pr aaja bhai.
Handwritten Notes of C language uploaded on my channel.
Please check my playlist for both theory and programs..... 😊
For float mark[2] [7];
Bytes are: 56
For int a[4] [7];
Bytes are: 112
it depends on the architecture the size of int is 2 bytes if you work on a 32 bit system
How to find bytes please explain
Float can store here=>2×7=>14 elements
Size of float type array is=Sizeof(float)×14
Or we can use a variable and take size of arr(0)/size of arr[5]
Thank you mam for helping middle-class students who can't afford to coach. 😊
For float mark[2] [7];
total elements: 14
Bytes are: 56
For int a[4] [7];
total elements: 28
Bytes are: 112
float 1 byte leta hai bhai
float takes 14 byte
@@muzammilabedin6936 Kaun se system use kar raheho 1 byte lera float ke liye
@anilgowdam anilgowdam int uses 2 bytes on 32 bit compiler and 4 bytes on 64 bit compiler
@@muzammilabedin6936 float 4 bytes leta h
@anilgowdam anilgowdam bro, just google the size of data types in c [ on 64 bit]
int and float have the same size...
you are a gifted teacher..... your explanation is superb and easy to comprehend
Total Elements we can store are 2X7 = 14
Size Allocated is 14X4 = 56
since Size of Float is 4 bytes
For marks[2] [7];
total elements: 14
Bytes are: 56
i wish i started watching your videos 2 years ago they help me sm rn
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.
Size of array=28
Memory allocated = 112 byte.
this is correct
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.
Size of array= 14
Memory allocated=56
For float
elements : 14
size : 56
if there is a award for saying "right" then it should goes to jenny's maam
👉Typically each integer or float number occupies 4 bytes of memory.
🫱So no.of elements in
float [2][7] is 2*7=14 elements.
And each element occupies 4 bytes , so 14 elements occupy
14*4 = 42.👍
Similarly , for int [4][7] has
4*7=28 elements and no.of
Bytes occupied 28*4= 112 .👍
float a[2][7]:-
✓Size of array or no of elements
= 2*7=14
✓it should allocate 14*4=56 bytes......
Int a[4][7]:-
✓4*7=28 elements
✓28*4=112bytes
Elements :14
Bytes :28
Total elements:-2*7=14
Total Size of arrays=56byts
Thnks.....Sir kal yehi pane wale hain class mai...I studied it in advance👍☺️
@@ignotums21 bruh ur course complete
Float size is: 4
total size of array is: 14
Sum = 4*14 = 56bytes
14 Elements
57 Bytes
🤗🤗🤗
Good explanation mam...ur explaination is too good.. thank u mam
total_element: 2*7 = 14 | size of the array: 14*4=56
Mam you are best teacher i was not able to understand c language but you made me understand so much thanks mam . I hope mam you will lunch c++ series later
thank you mam ji so fabulous class for us 😊😊😊😊😊
total element is =14
size of float is 4
total size for this array is 56 byte
the arrray can store 2*7=14elements
bits = elements *datatype bits =14*4=56 bits can be store in the array
There will be 14 columns in total.
The size of the float is 4 bytes. So, 14 x 4= 56 bytes.
The size of entire 2D Array is 56 bytes.
Total elements 2*7=[14]
Total bytes in an element 14*4=56 bytes
Float "4 bytes"
total element (2*7=14) and size of float = (4 * 14 = 56 bytes)
float a[2][7]; no. of elements: 2*7=14 and bytes =14*4=56 as the size of float is 4byte.
❤
Total elements= 14
Float f= 4
Total bytes 14*4=56
float will be stored in 32 bits that is 8 byes (8X15)
2*7 =14 elements
14*4 bytes for float =56 bytes
13:35
float a[2][7];
No of elements=14
Array size=4*2*7=56bytes
best cs teacher ever
Thanks for being such a wonderful teacher
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)
for float, 14 elements can be stored and 56bytes would be allocated.
float a [2][7] = 14 elements can store and according to 32 bit size 14 * 4 = 56 bytes memory allocated to this
Bro can u explain y ur using 32 bits
I spoke a little bit in Hindi too
lecture starts at 2:16
No real lecture actually starts from 0:00 because mam was explaining about the uses of unacademy
TOTAL ELMENTS = 2*7=14
SIZE OF THE FLOAT IN C = 4
TOTAL SIZE = 56 BYTES
TOTAL ELEMENTS = 4*7=28
SIZE OF THE INT IN C = 4
TOTAL SIZE = 4*28=112 BYTES
Super teaching mam❤
4:33 her smile...🤩
Complete C programming as soon as possible
14 elements 56 bytes
14 elements[row(2) *column(7)] and 28 bytes (float take 2 bytes so 14*2 = 28 bytes)
total element is 28
total bytes for float is 28*4=112
Jayanti maam please more on functions pls.. I am super confused on functions and no proper explanations on functions.. pls maam
Thank you so much mam for explaining this in simplest manner.
Thank you mam ❣️
14 elements stored and 56 bytes it is take
Thank you mam very nice gide & very nice best information two dimensional array teaching video.👍
Thanks!
I know the reason behind this
total element 14
size of float 56
float a [2][7];
2*7=14 data to be stored
14*2=28bytes to be allocated
Thank you very much. You are a genius.
13:35 total elements =14
Size = 56bytes
Good explanation mam it's better than old 2dimensional one
12:27
no. of. bytes :56
no. of elements=14
Please correct the previous video when you showed how to perform a binary search, in the video, you use :- while ( left < right ), doing this will never get to the last element, you should do like this :- while ( left
I know people may criticise me
But your beauty is just distracting me
To understanding the concepts
Plzzz don't be so beautiful 😍
Size of array =7x2=14
Total no. Of element =14
Float =1byte
14x1=14bytes
float take 4 byte
Thank u mam lovely classes for students 👍👍
Crystal clear concept..
The ans is 56 bytes for float
Thank u maam. Please more on functions pls.. how to set parameters and returns pls pls pls
U r really blessed with your, explanation...!!,,your lectures were really helpfull...🥺,
Thankew so much...!!🙏
And u r so cute😳,,
---,with respect😅
YOU ARE SO NICE MAM
I'M VERY VERY IMPRESSIVE IN YOUR SWEET VOICE HELPING FOR CLASS
YOU ARE SO MOST MAM 🙏
Total element =14
Size of element=4
Total size =56
Thankyou so much ma'am 😢❤️🙏🏻
Mam your explanation is too good I understand in a easier way
mam you look more beautiful than in your previous videos ❤️
4*7=112 elements
112*4=448 bytes
We use only int data type in matrix
it can store 14 element and 56 bytes will be allocated
Yes mam make complete videos on 2d and multiple dimension array 🙏🙏🙏🙏🙏🙏🙏🙏
Total element is 14 and byte will be 14x4
Thanks you so much ma'am
14:02 total elements = 28
Size = 112 bytes
I m not aspirant bt still see ur videos 😍😍😍😍😍😍😍😍
tharki
56 bytes
Thank u thank u thank u maam… please more on functions pls… functions and its parameters and stuff are super confusing
Sure
2:15 Lecture Started
I respect you so much mam thank you
🙏Thank you mam...❣️
by taking float=4byte
the ans is 56 bytes
Thanks mam
Home work
👉Noo of elements = 14
👉No of bytes = 36.
Thanks
Thank you so much
total memory allocated is= 56 byte
stay strong soldier