I have been stuck in array for 3 months, couldn't understand what is it actually, what is the importance of array & why we use array in programming. To be honest after seeing this video a couple of my confusions have been removed & if I do practice & solve different kind of problems using the array I think I will get the whole concept of array. Thank you so much for this effective video, I appreciate :)
Hi, Clear voice, clear explanations for an unclear subject; Continue the good work. Looking for more detailed examples on Operator overloading... hope you could do.
thanks so much. i was so lost in the 4 hour lecture yet i figured it all out just from this short video. my teacher doesn't explain things well he's indian and can barely understand him =(
Do 2D arrays have 2 indexes 1 counting all the elements in each row or column and another counting the number of rows and columns in the array rather than counting the elements individually
how do i make an array in which the values are inputed by the user and which can carry as many values as it can and the values can be modified and calculated(like sum,division multiply etc). or it cant be made ?? someone plz answer. lang : python, c++
+Joshua Gutierrez: Words in an Array? Yes you can. Just use 'char' type array. If you want to put words in every element of array then use 'string' type. For example: string str_array[2]; str_array[0] = "Hello "; str_array[1] = "World!!!";
well this was really helpful for me but I have a question that when I practiced arrays I wrote something like this float rainfall [5] and then I stored an integer type value in 2nd element and it didn't gave any error so kindly tell me that how can we specify an array to a particular type like integer or floatsorry for bad english
This would storeday is array and num is the index. I think you should use like int storeday[10]; then get the input using for loop or whatever you prefer.
***** No that is not correct. It will run the ++i section at the *end* of the for loop bracked section ( { } ), so when the the for -loop reaches } -line (or passes the last line or the for-loop body, how ever you want say it), then it will do ++i. After ++i it will check the condition i < 5. Note that it is done like this: ++i; i < 5 and NOT: ++i < 5 (or i++ > 5) Thus ++i (or i++) if fully finished first and i is increased by one in both situations before testing i < 5. Thats why ++i and i++ will always give the same result in these loops - it does not matter which one you use, it will run the same amount of loops. But its possible that ++i is faster than i++ (at least in some compilers), thats why I prefer alwasy ++i.
Didn't really understand this lecture at college,but the video really cleared a lot of things up,thanks yo :)
When you're hungover in your uni lecture and have to teach it yourself from scratch.
yours are definitively the best c++ tutorials for beginners you can find on the net!
This guy was my professor in college, really cool guy!
I have been stuck in array for 3 months, couldn't understand what is it actually, what is the importance of array & why we use array in programming. To be honest after seeing this video a couple of my confusions have been removed & if I do practice & solve different kind of problems using the array I think I will get the whole concept of array. Thank you so much for this effective video, I appreciate :)
stuck in array for 3 months? Sorry dude you are kinda stupid lol.
Awesome Video, short, simple and to the point!. I have a final tomorrow involving Arrays and this just sped up my reading lol Thank You
and now your in the military
Great lesson. Clear, concise, and easy to follow. Thumbs up and subscribed. Thank you!
So grateful for the quality of this lesson. Thanks for the upload.
grate job whoever u r. there are 1000 of tutorial in youtube and only few of them are effective and u are few of the those good tutor thank you
I really like your tutorials, you've helped me a lot!! keep with the good Job!
Great video. You're my new teacher.
simply superb.....much better than my teacher.....😍😍
YAY you are way better than my professor
HI GUYS...PLZ CHECK OUT MY CHANEEL
name is mog LOL
It is easy to use for loop instead to write and define each arrays elements. Make your program simple and looks nice
Hi,
Clear voice, clear explanations for an unclear subject; Continue the good work. Looking for more detailed examples on Operator overloading... hope you could do.
thanks a lot for this i like how you explained the words that didnt quite add up like contagious yhis was awsome and i hope you make
more
You're a champ dude, you make everything sound simple =]
So easy to follow!! I'm subscribing!
PLZZZ mELLISA
no
Hello so nyc
thanks so much. i was so lost in the 4 hour lecture yet i figured it all out just from this short video. my teacher doesn't explain things well he's indian and can barely understand him =(
I know the video is old, but love you so much man, thanks for your help!!!
Do 2D arrays have 2 indexes 1 counting all the elements in each row or column and another counting the number of rows and columns in the array rather than counting the elements individually
How can I make a program to show the smallest value in an array?
this is so easy to understand good job
that means that I could use an array to set more than 1 number/word to a variable?
what is the name of the compiler?
this video save me lots of time
how do i make an array in which the values are inputed by the user and which can carry as many values as it can and the values can be modified and calculated(like sum,division multiply etc). or it cant be made ?? someone plz answer.
lang : python, c++
pls what IDE are you using?
finally ,a video without a heavy accent!!!
Shut up white swan
which complier you use
Can you explain to me how to set up Eclipse in order to do the debugging? I have a lot of troubles to get it working. Thank you!
which compiler you use in this video ??
Which is being used over here?
What compiler do you use for c++?
Which Compiler is this guy using?
where did you define "i" before using for loop ?
he defined it inside the for loop. int i=0
what ide you use?
I want to do something similar, but I want to assign actual words instead of numbers, is there a way?
+Joshua Gutierrez: Words in an Array? Yes you can. Just use 'char' type array. If you want to put words in every element of array then use 'string' type. For example:
string str_array[2];
str_array[0] = "Hello ";
str_array[1] = "World!!!";
does that work on Turbo c++?
Yes, it should! As long as it is C++
well this was really helpful for me but I have a question that when I practiced arrays I wrote something like this float rainfall [5] and then I stored an integer type value in 2nd element and it didn't gave any error so kindly tell me that how can we specify an array to a particular type like integer or floatsorry for bad english
a number of good points in this video
I did nat see declaration of "int i" in your program tho its works and gave you an output how that happen
He declared i inside the "for" loop. for(int i = 0; i < 5; i++)
Okay thanks
great explaining thank you.
what is the name of your IDE ?
how could i make all the elements the same without having to go through each variable and assigning it to what i want?
TypeofData Rainfall[5] = { the value, the value, the value, etc};
You can use a for loop
what is the different between array and vector? Thanks in advance
this is so easy to follow thank you
would this be a syntax error?
int num;
cout
I think you might need cin>> _(var goes here)_; after the 2nd line. Correct me if I'm wrong.
yeah i forgot to add, but if i input it into num, i can use it into array?
This would storeday is array and num is the index. I think you should use like int storeday[10]; then get the input using for loop or whatever you prefer.
Great!
This is the first time watching your videos, great video! What compiler/"software" are you using?
In the video @ 6:55 he said he's using Eclipse.
CodeBlocks are very simple and great to use
Use VS
please answer this qution how to program 10 numbers sort by even or odd
solomon Kahsay make 1 that can be divided by 2 and 1 that can’t be divided by 3
Vary clear - thank you for posting!
Thanks for this video ! Great Instructor, Easy to understand , and took it slow and explained everything!!
Excellent explanation..i got it
Can this work with finding for the nth term?
You need to define the array accordingly. With a for loop, and if else conditional check, it would be simpler.
Which software you are using?
c++
Can you do something like cout
No. It doesn't work like that. Since rainfall[I] is a position definition.
This is great. Thanks so much.
How I can download turbo c++ in my laptop windows 7
4:20
itsn't a 'C' char .. it's a smily face :)
Thanks!
Great stuff!!
Thanks . Helped me :)
HI YASH PLZ CHEK OUT MY CHANNEL PLZZZZ!
no
I can't understand 2d arrays
isn't it supposed to be:
for ( int i = 0; i < 5; ++i )
But it works both ways.
***** No that is not correct. It will run the ++i section at the *end* of the for loop bracked section ( { } ), so when the the for -loop reaches } -line (or passes the last line or the for-loop body, how ever you want say it), then it will do ++i. After ++i it will check the condition i < 5. Note that it is done like this:
++i;
i < 5
and NOT:
++i < 5 (or i++ > 5)
Thus ++i (or i++) if fully finished first and i is increased by one in both situations before testing i < 5.
Thats why ++i and i++ will always give the same result in these loops - it does not matter which one you use, it will run the same amount of loops. But its possible that ++i is faster than i++ (at least in some compilers), thats why I prefer alwasy ++i.
Bob, yes I think that is a better way to do it. Its possible faster also.
thats so rude-y... hahahahahah
Thanks! I will put more operator overloading on my todo list.
This is a clean view
great video!
Are you an Indian as you are very good at teaching programming
Very helpful
Thank you (y)
ROSE PLZZZ
no
He explain so well but my English not good enough I wish they had the subtitles in French
Thank you so much.
Thank you for this!
Anyone in 2022 April
that is C array, not C++ array
Mister Cipipeew whats the difference
Why do you sound sooooo much like Bill Gates?
Bill Gates is teaching us. LOL
like brooooooo 🙆♀️🔥
Thanks sir👍
Very good
good job!!
it is a c++ array and not c nolimite ehn
thank you i understood
Very helpful, thanks!
aWE
it is important studing
thank you
very help full video than k u sir.
sir i need loop programs and pointer programs with full source code.
who is here in 2024 May?
🫠🫠
thanks
thank you sir. Helped me a lot!
Good
thx a lot bro
Jesus loves you
Believe in him and repent !
When in doubt RUclips it
Thank you very much. Very well explained
That is another example code i did for an array
pastebin.com/i05nTLEk
Bro make more vidos
yeh...dude u do sound more like Mr.Gates
I love it... Thanks :)
sir CCC new syllabus 2016
Yawa imo volume hinay kaayu yawaa ka
too much nonsense
explain better than my professor whose a graduate from Stanford
Thanks!
very help full video than k u sir.
sir i need loop programs and pointer programs with full source code.