🚀 Loved the tutorial? Take it further with Programiz PRO! Refine your skills, conquer coding fears, and build confidence with interactive lessons, quizzes, and challenges. Strengthen your programming foundation and master C today! 👉Start Here: bit.ly/c-master
@programizstudios2 жыл бұрын
Timestamps: 00:00 Start 00:20 C Multidimensional Arrays 00:39 Declaration multidimensional array 01:17 Initialization of multidimensional array 02:49 Access Array Elements 04:57 Change Array Indexes 06:56 Multidimensional Array and for loop 10:14 Quiz
@ashutoshm.59202 жыл бұрын
Random value is the answer coz there are only 4 elements in the second inner array , and indexes start from 0 , so 4th index number does not exist .
@ethanflorko496 Жыл бұрын
Gj
@AnushasitCoder10 ай бұрын
actually the answer is 0 and not random value...random value is generated when extra spaces are available and youre trying to print them....eg...youre given 5 index space to the array and only 2 are filled...then if u try to access the 4th index...u get random value...in this case it is different...
@juliotitosagastegui945310 ай бұрын
@@AnushasitCoderu get a random value, check the ans in their website
@JoseCarv09 ай бұрын
You are correct (answer: random).
@bekmirzo_berdimurodov8 ай бұрын
The answer is 0, i did it for myself...
@KamalPoudel-h1f9 ай бұрын
Love you from Nepal. Full support for our best team in Nepal 🇳🇵 .
@KELVINWAINAINA-hs7wq8 ай бұрын
These videos have been the best if you want to understand C programming concepts quickly
@nanimg35122 жыл бұрын
Tq ...plz continue the videos we are waiting for more of c programming
@user-nt4nm4fb3u11 ай бұрын
Clean explanation as always! Thank you very much...
@denkyitehillah74495 ай бұрын
The code #include int main() { int marks[5]; int sum=0; int average; printf("Enter the 5 marks: "); for (int i=0; i
@ManjulaManjula-g2v16 күн бұрын
🎉🎉🎉
@anthonyatienza3363 Жыл бұрын
This is helping me with collage. thank you a ton.
@tafsirnahian6692 жыл бұрын
Her voice is really soothing.
@dcpowered3 ай бұрын
Big like from me! I discovered your website looking for code snippets. Your channel is fantastic for a C beginner!
@gopalbathula13272 жыл бұрын
Love you mam. I started following your classes, but upload the next video as soon as possible.
@jip1521 Жыл бұрын
most straightforward explanation .
@programizstudios2 жыл бұрын
Q. Which value will we get when we print arr[1][4] from the following array? int arr[1][4] = { {3, 6, 9, 12}, {2, 4, 6, 8} }; A.12 B. 8 C. 0 D. Random Value
@thisistusharmahajan2 жыл бұрын
Random value
@thisistusharmahajan2 жыл бұрын
No Programming Task for this lecture.🙄🙄
@haidang4love2 жыл бұрын
C Because if you count 0, the 4th element does not exist.
@renuga.k74732 жыл бұрын
D.Random value
@jayminpanchal64422 жыл бұрын
Random value
@amayaamarasinghe58382 жыл бұрын
Your videos are super clear & helpful!! Thank you!!
@programizstudios2 жыл бұрын
Glad you like them!
@mosopefoluwaadebawojo35432 жыл бұрын
I love your videos. They're so easy to understand. Thank you so much
@prithviraj6272 жыл бұрын
focus on what she is trying to teach.
@AaravMakan2 жыл бұрын
@@prithviraj627 😅
@acemaster65 Жыл бұрын
good to watch and easy to learn tq
@nihatdonmzov41662 жыл бұрын
Thank you so much, Madam
@jeffersonmaingi6 ай бұрын
Nice teacher for the Quiz, Random Value is printed. Thanks for sharing
@siddharthabandyopadhyay59642 жыл бұрын
Random value will be printed as arr[1][4] doesn't exist..array index out of bounds
@red1iteee Жыл бұрын
The correct answer is D. The array was initialized as "arr[1][4]" which is incorrect, it should be "arr[2][4]". This causes only the first array to be recognized by the program, so when we try to print "arr[1][4]" (which should be "arr[2][4]" if the array was initialized properly) the value does not exist, therefore a random value will be printed.
@MG-dj7kf Жыл бұрын
Thank you!
@akashmeesarapu64382 жыл бұрын
You're just amazing mam Nice teaching
@spinash7864 Жыл бұрын
I'm loving your voice. It's so calming 💯
@thesun___ Жыл бұрын
thanks bro
@onic9623 Жыл бұрын
Option D : Random Value
@sebiddeusama91132 ай бұрын
thanks have benefited alot
@vishakanr14782 жыл бұрын
option D .......as to have array with index 4 the declared array must be arr[1][5] but the declared array isnt
@albertamenyah3019 Жыл бұрын
Vivid explanation. Love your teaching, the answer to the programiz quiz is D
@b7sh_b7sh Жыл бұрын
amazing teacher😍
@sibinp17 Жыл бұрын
Option D, But the truth is we don’t even get a random value as arr[1][4] does not exist
@saisunkara1696 Жыл бұрын
in the above array the size is exceeded because the actual size is arr[1][3] so the the above array pics the value zero because if the array[1][4] has no value to pick by default it will pick zero
@milanmisli50512 жыл бұрын
awesome, i have watched all videos prior to this one
@mrawesome77398 күн бұрын
Please make video with multidimensional malloc
@jackyjaii2154 Жыл бұрын
it is error right? becuz it should be int arr[2],[4]???? make me so confused ,the answer is zero , random or error???
@idealworld1422 жыл бұрын
awesome thankyou soo much ma'am
@Abhisheksingh-ep2gu2 жыл бұрын
maam the answer will be zeero{0},as it can read upto [1][3],if i am wrong plz let me know.
@collinshagembe7852 Жыл бұрын
At first i thouhght the answer was B(8), I then realised that int arr [1][4] is not present in the array elements we have been provided with. [1][4] in this case means that there's only one array with 4 elements in the array . However the numbers displayed {3, 6, 9, 12} , {2, 4, 6, 8} represents two arrays with each having 4 elements, hence the proper representations should be int arr[2][4] = {3, 6, 9, 12} , {2, 4, 6, 8} . hence for the quiz provided you will get 0 example #include int main(){ int arr[2][4] = {{3, 6, 9, 12} , {2, 4, 6, 8}}; //two arrays with 4 elements in each array// printf("%d ",arr[1][3]); // [0 1 - one is second i.e second array], [0 1 2 3 - 3 is fourth] hence the command asks us to print the fouth element of the second array// return 0; } The output is 8
@canhtranhLuat Жыл бұрын
You're wrong
@collinshagembe7852 Жыл бұрын
@@canhtranhLuat the answer is zero mate. Am sure you didn't read the whole comment..i said at first i thought the answer was 8, but after working it out..i.realized it's 0
@canhtranhLuat Жыл бұрын
@@collinshagembe7852 no, the correct ans is Random value
@TemesgenAlemu-b7w5 ай бұрын
@@canhtranhLuat I think, the answer is 0. She was explaining this issue while she was teaching about arrays. Go and check my friend.
@umac287 Жыл бұрын
Queeze answer is d - random value
@countrysideshowyaigrock4689 Жыл бұрын
awesome!!
@yrroszage8702 жыл бұрын
This is great tutorial it helps me alot
@buissondecsm78792 жыл бұрын
Hello programmiz I suggest you make a postgreSQL series
@RATANAGARWALITINFORMER2 жыл бұрын
nice
@aburayhansushmoy1102 жыл бұрын
Loving the videos
@ΚωνσταντίνοςΛαζαρίδης-ξ9ι Жыл бұрын
thanks
@thulasizwephetha82112 жыл бұрын
//Which value will we get when we print arr[1][4] from the following array? int arr[1][4] = { {3, 6, 9, 12}, {2, 4, 6, 8} } #include int main() { int arr[2][4] = {{3, 6, 9, 12}, {2, 4, 6, 8}}; for(int i=0; i
@harshadatapre21332 жыл бұрын
4. Ramdom Value
@crazy_me006 ай бұрын
isn't the app available for systems?
@harshchauhan49452 ай бұрын
option D. Random value
@TemesgenAlemu-b7w5 ай бұрын
The correct answer is C since int the second array, we don't have fourth element which in this case it is assumed to be 0.
@InsaneMedusa2 жыл бұрын
A. 12 is the answer, cant imagine so many people in the comment going berserk over this simple question.
@jackyjaii2154 Жыл бұрын
bro watch the video again
@jackyjaii2154 Жыл бұрын
12 is [0], [3] btw
@manikumargannavarapu81232 жыл бұрын
please upload videos on pointers ASAP...
@aminshaikh45922 жыл бұрын
option D) random value
@AM-yd8en Жыл бұрын
10:22 the answer is D, Right?
@kaileebrennecke85152 жыл бұрын
For the quiz, the answer would be C since in the declaration of the multidimensional array, you only put that you have 1 array instead of arr[2][4]. Therefore, the entire second array doesn’t exist, and would print out a 0.
@kene5832 жыл бұрын
C is wrong it is a random value. This is because you only get zero when the index of an element was not given in an array that has the capacity of having that particular index.
@ethanflorko496 Жыл бұрын
@@kene583 I was going to say... Just because the other array doesn't exist doesn't mean anything, the fact is there is no 4 index in the first array and from the previous explanations any value that is accessed that doesn't exist in the array (the fourth index) prints out a random number.
@muznahhussain13212 жыл бұрын
I am started to follow this series but I don't know how will it benefit me in practical life
@has2236 Жыл бұрын
Answer: D This is because [4] is out of range for arr[1], so it will give a random number.
@sltechgalaxy16772 жыл бұрын
Please do about scope resolution operater
@internethippo-p3q5 ай бұрын
Random value the matrix is of order 2*4 that doesn't appear in the array
@judithneumbe-z9r2 ай бұрын
Why are we using the increment
@suvrojit2004 Жыл бұрын
Random value will be the ans for the last question
@GATE3182 жыл бұрын
😲😲
@onihasan2576 Жыл бұрын
Random value as only 1 array is declared so the 2nd array will hold 4 random number
@yogithabale5 ай бұрын
opt 4 , random value
@fredambrose3 ай бұрын
Can you teach me to program the Chicken Marsalla?
@emmanuels.k.dekpah2 жыл бұрын
please send me the link for the certificate program.
@yousifmerza55782 жыл бұрын
Do you have a personal Chanel please?
@prajapatiajay2 жыл бұрын
D is right ans
@yigitcamas229 Жыл бұрын
beton yetmez beton
@barkhadibraahim10232 жыл бұрын
#include int main() { // Write C code here int arr[1][4] = { {3, 6, 9, 12}, {2, 4, 6, 8} }; printf("%d", arr [1] [4]); return 0; } answer is = 0
@kareemtawfik2886 Жыл бұрын
D. Random Value
@priyeshkr187 ай бұрын
💓💓💓
@proxycomandos3 ай бұрын
i just compile this program and it waas eror for too many initializers
@teju_vasuchannel2080 Жыл бұрын
The answer to the quiz is option 'D',Random value
@soumadeepdas76102 жыл бұрын
option.8
@duggisuguna49082 жыл бұрын
Option C is correct
@SavarahMarian8 ай бұрын
Quiz answer should be a random value
@ivanurilski3157 Жыл бұрын
@gazalaperween96022 жыл бұрын
D is answer.
@alanizaguirre46702 жыл бұрын
& it prints "CHEERIO" LMAOO 🤣🤣🤣🤣🤣
@safiullahmayar61532 жыл бұрын
A is the correct answer because array starts from 0 and 1 2 3.
@ethanflorko496 Жыл бұрын
No, the answer is D, the array doesn't have a fourth index that's the issue. Of course, the array has 4 #'s held, but it does not have the specific 4th index it's asking for. This will ultimately result in a random number being printed since the fourth one doesn't exist.
@LizaOG Жыл бұрын
Array starts from 0 when counting take note
@thecyber4652 жыл бұрын
Is D correct answer?
@balashebjadhav977 Жыл бұрын
Answer is D)
@adityad8929 Жыл бұрын
Quiz answer is Random Value
@ghema9515 Жыл бұрын
Ramdom variable mam
@bullshit485Ай бұрын
The Answer is D, Random Number.
@bilecode81142 жыл бұрын
the Answer is C:=0
@IphOne-kb3bj2 жыл бұрын
12
@vinaykumarvinaykumar20062 жыл бұрын
My Ans is B
@zuko80237 ай бұрын
answer is D
@bibeklimbu-nt4ff8 ай бұрын
maybe random value
@movietime70622 жыл бұрын
Answer is randome value
@shahmeerakbar20452 жыл бұрын
Please slove syntax program iam watch you video
@xxxegster6527 Жыл бұрын
the answer of quiz is b,8
@mulareddy26242 жыл бұрын
Quiz answer : b) 8
@nihatdonmzov41662 жыл бұрын
The answer of the quiz is 0;
@aboutouruniverse3834 Жыл бұрын
Quiz: D
@DARKEMPIRE-12 жыл бұрын
8 is answer
@Bestinfo36904 ай бұрын
Opt B
@gamerkim19122 жыл бұрын
12 is the correct answer
@JOSEPHMUKAMA-v3b Жыл бұрын
B.8
@pulkitgupta83442 жыл бұрын
This quiz is wrong, it will give an error. Please respond if I am right.