let's see if anybody here can help me.. i'm just starting to learn c++, right now i only know java.
one thing i don't completely understand is.. if i want to create a class, i have to create 2 files for each class i create? i'm reading some books and they all say, first create a header file .h then and then a cpp file where we put the algorithm for earch function in the header file.. i mean i find it very confusing, in java just create a class and boom that's it. or am i getting it wrong.?
STFU, oh it's all so easy! You aint working at Orical yet. It don't matter what you know , its the degree you earn that matters. So step off and quit acting like a pompas jerk. Don't we have enough jerks on this world? Have a nice day!
A 2 dimensional array. Instead of using ages[3] You would make it ages[3][3]
If thats what youre asking. I dunno if he goes over it in his tutorials or not but you can look up "multi dimensional arrays" on google and learn about them.
Just wondering if you have any tutorials on multi-dimensional arrays. I have to make a grade table for my class which basically needs about 8 rows and 5 columns.top row would be for titles i.e. exam grade and the rest of the rows for each student. below the table we have to have exam average lab avg and grade point avg. I need some serious help. first class been doing it for 6 wks now and itsl ike im a deer in headlights
Thanks alot i was beginning to worry about my c++ class i'm a beginner and they teach it like i already know it my teacher does not know how to explain anything this is really gonna clear it up im gonna watch your tutorial so i can do my assignments for the week thanks a lot man.
@pankti123 sure man. Download the youtube to ipod converter from dvdvideosoft. This lets you download youtube videos to mp4, which you can put onto dvd or ipod.
and one more thing..... do you know how to downloand and save it on my computer... soo i can transfer it to my phone...... cause i dont use my ipod as much. i use my cell phone more than ipod......
I could not have broken down this concept and explained it as efficiantly as you have and I have a masters degree in education! You should seriously consider teaching at a collegiate level!
@sfatman On his website he stated the he doesn't like the concept of colleges because, "education shouldn't be a business." He takes pride in providing this material for free, and I respect him for that.
if i got A grade in c++,,,,,,,,,its sure that creadit goes to you man.
khayyam18 1 week ago
Moron Arrays lol
gedist2 2 weeks ago in playlist C++ Programming Tutorials from thenewboston
I got a midterm in two days and man, youre saving my life!
hashem930 3 months ago
I have very stupid problem .
I have char array and i cant add value to every element that i want for example
i've tried
mychararry[x]=a;
mychararry[x]="a";
and none of then doesnt work .
How to assign value of type char to certain element of an array?
THEODORLOO 5 months ago in playlist C++ Programming Tutorials from thenewboston
@THEODORLOO would it be mychararry[1] = {+};
zeejenkins 1 month ago in playlist C++ Programming Tutorials from thenewboston
@THEODORLOO single quotes
bondservant4Him 3 weeks ago
Why are you so good!?
Brandlax 5 months ago
this is easy when you know java :D
MartysAdventure 5 months ago in playlist Flere videoer fra thenewboston
Volume and resolution is too low!
patlecat 5 months ago
WTF WAS TEH POINT IN MAKING NUMBER 10?! Stop confusing me.
Thevideoclown 5 months ago
Tanx bucky !
3croN 5 months ago
@thenewboston is it possible to use CIN on arrays ? like
cin>>numbers[0
cin>>numbers[1
cout << numbers[0 * ages[1 ?
TheStrategyGaming 6 months ago
yes it is a functioned called malloc more advanced than these tutorials
bondservant4Him 6 months ago
Why not just int ages[ ] = {21, 19, 9} ? So that it's easier to change later
ganonlight 8 months ago
@ganonlight cause it doesnt know how many elements you want
llkuwaitll 6 months ago
lollipop
JRodriguez609 8 months ago
do you need to include the cmath library to use arrays?
MitchelPwned 9 months ago
@MitchelPwned
No, you don't
Drekes1 9 months ago
you are awsome i love your videos
rawrmonster21 9 months ago
C++ is sad ); ]; };
TaceoGamingTutorials 9 months ago
you areeee aaa besstttt teacher indeeeed!!!!!! thanxxxx.
aemyism 1 year ago
YOU ARE THE BEST TEACHER I HAVE EVER SEEN!!!!!!!!!
anmolwadhwa99 1 year ago 3
grrr man. . how about input an array range and put values on every range of it. . T_T can u help on this please??
bhebabby 1 year ago
let's see if anybody here can help me.. i'm just starting to learn c++, right now i only know java.
one thing i don't completely understand is.. if i want to create a class, i have to create 2 files for each class i create? i'm reading some books and they all say, first create a header file .h then and then a cpp file where we put the algorithm for earch function in the header file.. i mean i find it very confusing, in java just create a class and boom that's it. or am i getting it wrong.?
martmelee 1 year ago
This has been flagged as spam show
Best C tutorials at programmingforfreshers.blogspot.com
raghuace 1 year ago
Hey thanks for the clear explanation.Can you please tell me how to use removeAt function to remove an element from array..
debasish1228 1 year ago
STFU, oh it's all so easy! You aint working at Orical yet. It don't matter what you know , its the degree you earn that matters. So step off and quit acting like a pompas jerk. Don't we have enough jerks on this world? Have a nice day!
silverpizza100 1 year ago
sweet. hooray for options.
ZimzRevenge 1 year ago
vector>array in nearly every case.
AgentCartman 1 year ago
sir what if,instead of declaring the value of age, you input its value , . what would be the code for the cout?
jaytigerdtg 1 year ago
21 *thinks too old*, 19 * stilll*, "ninnnnne" *creepy pedobear voice ensues*
i still love your tutorials xD
ph0chiz0 1 year ago
C++ is so easy after you learn java
jeffery12108 1 year ago
can,t belive someone actually dislike this :o
TheRealAuxiliary 1 year ago
Thank you for the great work, it clear and easy to understand.
David awaiting exams - Kenya
MuchiriDavid 1 year ago
how can i make a table by using an array?
jhelypop 2 years ago
ages[3][3];
flyingpiggg1 2 years ago
datatype arrayname[rows][columns];
eg. int nums[2][2] = { {1,2} , {3,4} };
you can think of this as a 2D array with 2 rows and 2 columns that contain the numbers 1-4 eg.
1 2
3 4
to output the number 3 we would say
cout << nums[1][1];
because remember the first element in an array is actually 0, not 1.
tntbrett 2 years ago
sorry 4 is nums[1][1].
3 is nums[1][0]
tntbrett 2 years ago
A 2 dimensional array. Instead of using ages[3] You would make it ages[3][3]
If thats what youre asking. I dunno if he goes over it in his tutorials or not but you can look up "multi dimensional arrays" on google and learn about them.
Pimp1nSmurf 2 years ago
It's called a multi-dimensional Array. When you initialize it, add another dimension like so:
int ages[X][Y] (more if you must);
Then when referencing a value, use it's Nth dimensional coordinate, such as ages[n1][n2] = Z;
Hope that helps.
xfx1118 2 years ago
@jhelypop Using multidimentional arrays. For example.
int array[10] [10] [3];
that is an array of 10 * 10 * 3 integers.
0121ryanh117 2 years ago
@jhelypop Multidimensional arrays. Declaring this array
int arr[10][10];
is like saying we want 10*10 elements, so we are delaring an array of 100 elements.
EmuAddict 2 years ago
This comment has received too many negative votes show
What is an array?
sevenmeyou 2 years ago
watch the previous tutorial
wazawoo 2 years ago 7
watch the previous video.
BednarChris 2 years ago 2
Just wondering if you have any tutorials on multi-dimensional arrays. I have to make a grade table for my class which basically needs about 8 rows and 5 columns.top row would be for titles i.e. exam grade and the rest of the rows for each student. below the table we have to have exam average lab avg and grade point avg. I need some serious help. first class been doing it for 6 wks now and itsl ike im a deer in headlights
shankman2k9 2 years ago
Thanks alot i was beginning to worry about my c++ class i'm a beginner and they teach it like i already know it my teacher does not know how to explain anything this is really gonna clear it up im gonna watch your tutorial so i can do my assignments for the week thanks a lot man.
KingsandmanII 2 years ago 2
great turorials man , they are so helpfull, i am downloading each part right now so i can put it on my ipod. thanks alot, 5 stars
mickmos 2 years ago 54
@mickmos hey can you please tell me how to download tutorials from youtube...... plzz..
pankti123 1 year ago
@pankti123 sure man. Download the youtube to ipod converter from dvdvideosoft. This lets you download youtube videos to mp4, which you can put onto dvd or ipod.
mickmos 1 year ago
@mickmos ohh thank you......
and one more thing..... do you know how to downloand and save it on my computer... soo i can transfer it to my phone...... cause i dont use my ipod as much. i use my cell phone more than ipod......
pankti123 1 year ago
@pankti123 get download helper
mylifeis2coolcmc2 11 months ago
This has been flagged as spam show
n00b!!!!!
ienvyclouds 2 years ago
This has been flagged as spam show
n00b!!!!
ienvyclouds 2 years ago
This has been flagged as spam show
n00b!!!!
ienvyclouds 2 years ago
This has been flagged as spam show
n00b!!!!!
ienvyclouds 2 years ago
This has been flagged as spam show
noob!!!
ienvyclouds 2 years ago
This has been flagged as spam show
shut the fuck up faggot
mickmos 2 years ago 9
who u talkin to?
BBBSuper 2 years ago
This has been flagged as spam show
n00b!!!!!!
ienvyclouds 2 years ago
This has been flagged as spam show
N00B!!!!!!!!!!!!!
ienvyclouds 2 years ago
I could not have broken down this concept and explained it as efficiantly as you have and I have a masters degree in education! You should seriously consider teaching at a collegiate level!
sfatman 2 years ago 95
@sfatman On his website he stated the he doesn't like the concept of colleges because, "education shouldn't be a business." He takes pride in providing this material for free, and I respect him for that.
TTUsucks88 10 months ago
@sfatman ...or teachers at collegiate level should seriously consider teaching on the internet instead.
Silhouette1984 5 months ago
Like everybody said, U ROCK man!
your tutorials are so easy to understand and learn for everybody!
antihate22 2 years ago 2
finally, tutorials from a professional behind a tutorial, not an 11 year old who trys to teach you to use notepad
JayDawgRox96 2 years ago 4
This has been flagged as spam show
i want to be you
techfixer16888 2 years ago
thanks man!
banjoboyjohn 2 years ago 3
This has been flagged as spam show
idiot u dont need to put the number of arrays in the array when u no what ur talking about then u can meke videos
ienvyclouds 2 years ago
learn english you biatch
useagle1987 2 years ago
WE love you..
nice work..go head
sriunit 3 years ago 6
Thanks for the help. I am reading up compound types in c++. This has really helped me.
chaalez 3 years ago 3
u are easier to learn from than my c++ teacher at college, wish u could help me with my labs.
weeno777 3 years ago 4
You break things down very good, easy to digest >> good job.
bgbyer 3 years ago 3
great tuorial man!
soccergod561234 3 years ago 7
NICE this is an very good tutorial!!
OlloX3 3 years ago 6
Its GREAT!!
Well explained Dude!!
mitulgoku 3 years ago 4