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 :)
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 =(
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.
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
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
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!!!";
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.
When you're hungover in your uni lecture and have to teach it yourself from scratch.
Didn't really understand this lecture at college,but the video really cleared a lot of things up,thanks yo :)
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.
simply superb.....much better than my teacher.....😍😍
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
Great video. You're my new teacher.
YAY you are way better than my professor
HI GUYS...PLZ CHECK OUT MY CHANEEL
name is mog LOL
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
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 =(
So easy to follow!! I'm subscribing!
PLZZZ mELLISA
no
Hello so nyc
I really like your tutorials, you've helped me a lot!! keep with the good Job!
Thanks for this video ! Great Instructor, Easy to understand , and took it slow and explained everything!!
I know the video is old, but love you so much man, thanks for your help!!!
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.
It is easy to use for loop instead to write and define each arrays elements. Make your program simple and looks nice
finally ,a video without a heavy accent!!!
Shut up white swan
Excellent explanation..i got it
this is so easy to understand good job
You're a champ dude, you make everything sound simple =]
Vary clear - thank you for posting!
a number of good points in this video
this video save me lots of time
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
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
this is so easy to follow thank you
that means that I could use an array to set more than 1 number/word to a variable?
where did you define "i" before using for loop ?
he defined it inside the for loop. int i=0
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
Thanks! I will put more operator overloading on my todo list.
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!
great explaining thank you.
what is the name of your IDE ?
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++
How can I make a program to show the smallest value in an array?
Which Compiler is this guy using?
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++
What compiler do you use for c++?
which compiler you use in this video ??
Great!
Great stuff!!
This is great. Thanks so much.
Thank you for this!
pls what IDE are you using?
Which is being used over here?
Thanks . Helped me :)
HI YASH PLZ CHEK OUT MY CHANNEL PLZZZZ!
no
This is a clean view
what is the name of the compiler?
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
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.
Very helpful
Thank you (y)
ROSE PLZZZ
no
thank you sir. Helped me a lot!
which complier you use
He explain so well but my English not good enough I wish they had the subtitles in French
Thank you very much. Very well explained
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
Very good
Which software you are using?
c++
great video!
4:20
itsn't a 'C' char .. it's a smily face :)
Are you an Indian as you are very good at teaching programming
Thanks sir👍
Anyone in 2022 April
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
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.
what ide you use?
Can you do something like cout
No. It doesn't work like that. Since rainfall[I] is a position definition.
Thanks!
Very helpful, thanks!
aWE
Thank you so much.
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
thank you i understood
good job!!
I can't understand 2d arrays
it is important studing
that is C array, not C++ array
Mister Cipipeew whats the difference
thank you
Good
I love it... Thanks :)
That is another example code i did for an array
pastebin.com/i05nTLEk
How I can download turbo c++ in my laptop windows 7
thanks
thx a lot bro
Jesus loves you
Believe in him and repent !
very help full video than k u sir.
sir i need loop programs and pointer programs with full source code.
Why do you sound sooooo much like Bill Gates?
Bill Gates is teaching us. LOL
like brooooooo 🙆♀️🔥
who is here in 2024 May?
🫠🫠
When in doubt TH-cam it
it is a c++ array and not c nolimite ehn
Bro make more vidos
yeh...dude u do sound more like Mr.Gates
Yawa imo volume hinay kaayu yawaa ka
sir CCC new syllabus 2016
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.