As a person who is only a few weeks into learning how to code in C, I found this to be the single most useful explanation of multidimensional dynamically allocated arrays in C on the internet. To the instructor in this video, thank you very much. This was excellent.
@jorgepedro84316 жыл бұрын
Best explanation about DMA and 2D arrays. Now I UNDERSTAND THE CONCEPT! thank you.
@gantabyakadel99174 жыл бұрын
Thank you for a wonderful explanation on Dynamic memory allocation.
@supernova78704 жыл бұрын
Thanks a lot sir , the way you explained was simple and most importantly understandable.
@noormohmmedkhan35764 жыл бұрын
Clear explanation of dynamic allocation! Thank you !
@paullater62304 жыл бұрын
Amazing explanation!
@julu27312 жыл бұрын
thank you , your are amazing and so is ur stash
@subhajitghosh40465 ай бұрын
Nice explanation sir..
@gautamgoyal62084 жыл бұрын
Sir you don't know how much big problem you have solved for me through this video
@alanl66273 жыл бұрын
Very Good Explanation
@avirel55844 жыл бұрын
Best explanation, thankyou sir
@sankaraiahs43476 жыл бұрын
thank you, Sir. your way of speaking and explanation very good.
@bhargav18113 жыл бұрын
BEST TUTORIAL !!
@jatishrajwani25883 жыл бұрын
Thank you so much sir!!! What an explaination💯💯
@ajazahmed50796 жыл бұрын
Thank you very much sir, you explained well. Keep uploading other concept videos too, they are really helpful.
@ajeetsingh49864 жыл бұрын
Thank you Sir... Really very useful and great explanation
@h.k326010 ай бұрын
Amazing!
@prashantsrivastava95504 жыл бұрын
Good one!! Thanks!
@chintamanipatil24466 жыл бұрын
Thanx a lottttttt sir!! it was tooooooo much much helpful for me
@amarnathbr34205 жыл бұрын
Great explanation sir.Thank you :)
@AMITKUMAR-ys4oe4 жыл бұрын
Are all the elements in array in continuous memory?I think they are not. Each 1d array created will have random addresses and hence it is not necessary that the element after 7 th element will be in continuous memory. And an array has all elements in continuous memory.
@MyLifeMyWorld086 жыл бұрын
Clear explanation. Thank you sir.
@rony30444 жыл бұрын
how would it be in C++
@roshanchongder5836 жыл бұрын
helpful .. thank you sir..
@taliac7 жыл бұрын
Thank you for the video. What coding language are you referring to here?
@pramanshugoel66066 жыл бұрын
c language
@harshseth32315 жыл бұрын
Why don't we create a array for size (i*j) using Malloc and address through arr[I][j] .. as it is same as 2d array.