@videonik300 you need to make sure that you have "using namespace std;" as the first line in your program body. I was having the same problem until i realized i forgot it :/
i love the way you start each video: what's going on everybody? These tutorials are amazing, but are you going to make a c++ game development tutorial after?? =D
thanks for the videos been learning, but when I hit build and debug on xcode it sez it succeeded , but "no launchable executable present at path" is all I get back
O well I'm still typing the stuff in anyway for the fun of it!!!!!
hey i love ur vids i am a very noob programer this is my first programing langauge i was just wondering im am using visual studio c++ and it doesnt let me us
Hey NB, Nice vid, gives people enough to go out & try it. Then a lot comes with experience like rolling 6-4 , 6-1 numbers you like ! Anyway what's a good online BG site. Thnx.
@ButaChicken i wouldn't call it a simple language cuz c++ is one of the difficult ones x] but yeah, cant understand how these epic tutorials can get a dislike O.o
Thank you for the tuts. I made it so it tells them to enter a number and then it takes that number and tells them the square root of it, before you did it in the tut.
@lucirz Use cin.get( ) instead of system("PAUSE"). It is MUCH less resource intensive, and is portable (meaning it works on any system, not just DOS or Windows). Also, launching your executable from the command line eliminates the need for any kind of pause.
@TheRedMalice i already know that, but i don't get why an experienced programmer such as himself would be teaching this to noobs, it's bad programming habit.
@lucirz I can't speculate on why he's teaching people to do that. I can only hope that in his future videos he instructs his viewers on the correct way to pause the program. Maybe he'll do one about member functions, and introduce cin.get( ) in that one. Alternately, he could teach C++ programming in a Linux environment to show people how REAL men write code. *flex*
@TheRedMalice well bloodshed is really good for beginners, i started out with bloodshed. but it's funny, now that i use linux and gedit to write code, it's hard for me to get back to use IDEs now lol....
@TheRedMalice Isn't it because say you entered two integers, using cin, and they told the program to add them together and display it, after you press enter the second time, after entering your second number, rather than displaying the sum it just closes.
@FAB3Production Not exactly. Assuming you have a 'cout' statement to display the sum, followed by cin.get(), the sum WILL be displayed but the program will still close too fast to see it. You will have to put cin.ignore() directly before the cin.get() statement to cause the program to overlook the last newline character in the keyboard buffer, which is a result of pressing the Enter key after you input the last of your two numbers. If you want to be specific, you could use cin.ignore(1, '\n')
Are you re-uploading tutorials or are you starting new c++ learning series?
You posted tutorial 5 after your posted tutorial 22!!! I don't understand whats going on and some explanation would be good because I don't know where to start exactly.
I thought you were going in chronological order. Perhaps you should tell people in the description whats going on.
more we need more tutorials but im gona watch ya old ones now :) hope that you have the same version that i do now or all the scripting will be diffrent words
Hey Bucky I love your tutorials, I'm already an experienced C++ Programmer, but I need to learn Assembly so I can do inline asm with C++. Do you know any good tutorials for learning ASM or could you make a video sometime if you are experienced with low level programming languages ;D?
now this works because when you try to assign the floating point number a to b, b is only declared as an integer and thus the fractional part (the "." part) is thrown away. hope it helps :)
visual studio 2010 express is free but hard to use all the functionality if you are an absolute beginner. Codeblocks is best for beginners in my opinion because it is less intimidating.
I would also like to note that using namespace std; is not necessarily that great idea. It means you inherit all the bad of std. (No pun intended). You should also teach people the alternative of writing stuff like std::cout<<. Also, it is very odd to define using namespace std inside of main. If your going to use it I would highly advise you use it out of int main(). In addition, it is a good idea to make int main() int main(int argc, char *argv[]) or something like that for command line input.
@ThatOtherNewsGuy 1. For this particular example it's not necessary, but generally you should do it just for good programming style and... well, to make shit work.
2. That's correct, making calls to the DOS is hella redundant. I will not elaborate, frankly because there's something called Google, and apparently, it's your friend.
1) Not necessarily - namespaces defined as you describe, are global - which can occasionally be problematic when used in more advanced programs. The use thereof in a local scope ensures that it'll be used only there.
2) Yes. Since this is a beginner tutorial, I think Bucky used this to circumvent having to explain other concepts that a beginner would have to grapple with in addition to what he's teaching. A beginner acceptable equivalent is:
BUT there is one big problem with them: you never finish the series(what happened to the IPhone rpg? And the php online game??) I thought you were 'so excited' about them?? . And then after a lot of years you start again with the series!(c++)...
Thank you
Tycho (tspider4)
ps please go on with IPhone (also for you best money profit)
@gonzo191 what the hell are you talking about? There's no defined rule for when to use "function" or "method", they are synonyms, so you can use them interchangeably; just as subroutine and routine which is also equivalent in some sense to the word function (OR method.) It's just that in Java, functions are generally called methods; while in C++ they're generally called just that, functions.
I'm very happy to see that bucky stopped using a global namespace in his new videos, but system(ANYTHING) is still windows only, cin.get(), or cin.ignore(255, '\n') is the C++ standard way to pause the program, Love the videos still though.
@blackfireize Why the hell would it matter if he uses global namespace or system() or not ? I dont want to offend you, but im just wondering, why you are actually happy about that, lols.
@LtuL1 Global namespaces are bad coding practice, when people saw that he was using that type of code, most, assumed this was correct. Now i'm not claiming to be an expert but when multiple namespaces containing the same members are used in global scope, the resolution of those members are distorted, meaning you can't code properly.
As for system(), its a windows only function, this too is bad coding practice. C++ was made to be a cross-platform language, system() is not.
@blackfireize Well i think it wont matter, not at all. You wont programm any significant with the c++-knowledge he teaches, so things like that just dont matter.
@LtuL1 No it doesn't, but for aspiring programmers, who want to program for a job later on in life, I think Its important to have a good foundation, with good coding practice.
@blackfireize Well i do want to programm as job later on, but im far away from that. And yea, youre actually true.
And well, someone that is already really really good in programming, told me i wouldnt learn anything from tutorials, he told me to think of a programm that i would want to programm, and then he told me that i should try to do that. He also said that i will never learn programming in another way.
@LtuL1 Ich habe bemerkt, dass Englisch nicht Eingeborener zu Ihnen ist, spreche ich ein kleiner Deutscher, Wenn das Ihnen helfen würde, aber seine Tutorenkurse für einen zufälligen Programmierer, nicht echte nützlich sein können, aber ja Sie recht haben.
@akfbtr I think there are enough java tutorials made by bucky already. just go in fucking google and check for the thing you want. now shut the fuck up and let the C++ programmers watch fucking retard..
@r3sp3c791, okay calm down buddy. his tutorials are the best and i have already fuckin 4 books about java and so many other materials too but no one can tell better than bucky, you know it. anyway, you will pass to java or c# someday also.
well , we need a advanced helping .. inheritance , virtual , classes , operator and so on .. that is what we really need .. thank u any way ,, hope to continue from A to Z ..
I agree with rom2014, you should switch to codeblocks. Not only is Dev-C++ no longer being maintained it also comes with an oudated compiler and an outdated debugger.
@rom2014 How is it better? Anything you can do on devc++ you can do on c::b and visa vera, the only thing I can think of is if you type { it makes a } a few lines down, a compiler is a compiler =/
It amazes me how you remember this stuff!
adjgamer 1 week ago
how good do you need to be at math to be good at c++ and such, do you actually need mathematical skill yourself?
ShazaLondon 2 weeks ago
Bucky you're awesome!
1Razerkey 4 weeks ago
"Squirt 154? wtf mofo?" xD
20PercentMilk 1 month ago
@112matija it should be .cpp because it's a c++ project not c
SlateHayes 1 month ago
Ok im learning java and C++ so from what im seeing is that #include is just like import in java right? :D
TheBigGarrett 4 months ago
"pretty cool haa?" :))) -> great tutorials!! thanks :)
AlexanderLibak 4 months ago
what is this? squirt 154? wtf mofo?
clannoobz 5 months ago
is ther a variable that holds numbers and words
magicplayingcards 5 months ago
i know what sqrt means what about addition subtraction multiplying and more?
what is the C++ word for those
please help.
magicplayingcards 5 months ago
@magicplayingcards + - * / are the operators for addition, subtraction, multiplication and division respectively.
brawl313 1 month ago
i used to watch xoax tuts but then i saw you and now i can never go back :) xoax isnt bad they just dont make the learning fun while you do
chillipepper117 5 months ago
This is the first time C++ has ever made sense, fantastic job brother....I'll be on youtube a while, what do we have left ...45 vids?
jimmo4life 6 months ago
wtf mofo
weswii 6 months ago
nice work bucky, i love your videos!
SuperYuxuan 7 months ago
You are a great teacher. I just started an hour ago with your videos, and i feel like ive been learning for days.
Sethscomptut 7 months ago 15
you are awesome dude.
warnexus 8 months ago
your tuts are amazing but somethimes i get SOOOOOOOOOOOOOOOOOOOOOOO bored because you speak WAY to much for some easy stuff :o
itznickyyheree 8 months ago
Is it necessary to use endl after a statement?
MrSalobhai 8 months ago
C++ makes more sense to me than BASIC for some reason...
TheMrSuperzilla 8 months ago
Thx man u learned me alot for not :)
ReaperHRX 8 months ago
@ReaperHRX For now*
ReaperHRX 8 months ago
For all using C++ visual 2010: change "a = sqrt(154)" to "a = sqrt((double)154)". Without the quotes of course. It is needed to determine the type.
SinfulGames 8 months ago 3
I have a nooby question... how do you start a project in codeblocks?
TheEliteTech 8 months ago
@TheEliteTech Bucky made another tutorial with codeblocks, watch it here: watch?v=tvC1WCdV1XU
jorgegatini 8 months ago
can't get them to work. when i type in cout << answer << endl;
it says that cout isn't declared and endl is also not declared
videonik300 9 months ago
@videonik300 you need to make sure that you have "using namespace std;" as the first line in your program body. I was having the same problem until i realized i forgot it :/
wvumaniac121 9 months ago
i love the way you start each video: what's going on everybody? These tutorials are amazing, but are you going to make a c++ game development tutorial after?? =D
xXEffsyXx 9 months ago
Cool, thnx!!!
The1Obito 10 months ago
Do you only use iostream in all of your videos? Is this why you don't use printf, input and stuffs like that? Is it because of the include?
thx
camposalexandreh 11 months ago
thanks for the videos been learning, but when I hit build and debug on xcode it sez it succeeded , but "no launchable executable present at path" is all I get back
O well I'm still typing the stuff in anyway for the fun of it!!!!!
jammanist 11 months ago
whats the "using namespace std" cause i get an error
Ichristensen96 1 year ago
hey i love ur vids i am a very noob programer this is my first programing langauge i was just wondering im am using visual studio c++ and it doesnt let me us
a = sqrt(154);
i dont kno why can some one plz help me
1thing1y 1 year ago
@1thing1y Same with me, but I'm using Dev-C++
Forgified 11 months ago
Hey NB, Nice vid, gives people enough to go out & try it. Then a lot comes with experience like rolling 6-4 , 6-1 numbers you like ! Anyway what's a good online BG site. Thnx.
steveanddon 1 year ago
double rainbow!
ACPCalin 1 year ago
if i want to multiply two numbers........how to do that?
siva18visu 1 year ago
you could also say number = sqrt(number); saving a variable
MiNiWolF1508 1 year ago
the 1 dislike is a rage quitter who cant understand simple language :)
ButaChicken 1 year ago 65
@ButaChicken or he works for CIA
Jozekban 1 year ago
@ButaChicken im a beginner in c++ but i dont think this is simple lol. i love it though
yandykun 1 year ago
@yandykun This is pretty simple if you've learned the basics of programming.
ImAllFact 1 year ago
@ImAllFact LMAO now i feel dumber
yandykun 1 year ago
@ButaChicken propably it was a mistake:P
skotous 1 year ago
@ButaChicken noway it is definitely bucky :D
mrvoodo1 1 year ago
@ButaChicken no he missed the like button
00pivot3lite00 10 months ago
@ButaChicken i wouldn't call it a simple language cuz c++ is one of the difficult ones x] but yeah, cant understand how these epic tutorials can get a dislike O.o
WhanaSeeWhatYouGot 9 months ago
@ButaChicken any disliker is a rage quitter who cant understand simple a simple language. nuff said
forrest0no 8 months ago
@ButaChicken 4 rage quitters :p (i am not 1 of them lol....)
afker553 5 months ago
wtf mofo
GrandAceKillas 1 year ago
what is that program
VideoEditingGuru12 1 year ago
@VideoEditingGuru12 dev-C++ u can get it buy searching it on google
jesus35688 1 year ago
@jesus35688 Code::Blocks is better.
Biohazard000Labs 1 year ago
Thank you for the tuts. I made it so it tells them to enter a number and then it takes that number and tells them the square root of it, before you did it in the tut.
ultrapwner 1 year ago
Thank you for the tuts. I made it so it tells them to enter a number and then it takes that number and tells them the square root of it.
ultrapwner 1 year ago
y not double d's??;)
ThePeeenut 1 year ago
lol bucky sounds more funny lately, what u ate bucky that made more funny? haha!
Larabiah3 1 year ago
I just love these tutorials they are so informative and helpful.
XAutomatedOwnerX 1 year ago
I look forward to hearing your beautiful voice XD
TravianKid 1 year ago
Here's the URL trail for the video I made to illustrate what I'm talking about: /watch?v=13fHZqXwdYg
TheRedMalice 1 year ago
Dude you rocks...
BurnScreen 1 year ago
i was told never to use system("PAUSE") cause it's not good
lucirz 1 year ago
@lucirz Use cin.get( ) instead of system("PAUSE"). It is MUCH less resource intensive, and is portable (meaning it works on any system, not just DOS or Windows). Also, launching your executable from the command line eliminates the need for any kind of pause.
TheRedMalice 1 year ago
@TheRedMalice i already know that, but i don't get why an experienced programmer such as himself would be teaching this to noobs, it's bad programming habit.
lucirz 1 year ago
@lucirz I can't speculate on why he's teaching people to do that. I can only hope that in his future videos he instructs his viewers on the correct way to pause the program. Maybe he'll do one about member functions, and introduce cin.get( ) in that one. Alternately, he could teach C++ programming in a Linux environment to show people how REAL men write code. *flex*
TheRedMalice 1 year ago
@TheRedMalice well bloodshed is really good for beginners, i started out with bloodshed. but it's funny, now that i use linux and gedit to write code, it's hard for me to get back to use IDEs now lol....
lucirz 1 year ago
@TheRedMalice Isn't it because say you entered two integers, using cin, and they told the program to add them together and display it, after you press enter the second time, after entering your second number, rather than displaying the sum it just closes.
FAB3Production 1 year ago
@FAB3Production Not exactly. Assuming you have a 'cout' statement to display the sum, followed by cin.get(), the sum WILL be displayed but the program will still close too fast to see it. You will have to put cin.ignore() directly before the cin.get() statement to cause the program to overlook the last newline character in the keyboard buffer, which is a result of pressing the Enter key after you input the last of your two numbers. If you want to be specific, you could use cin.ignore(1, '\n')
TheRedMalice 1 year ago
@TheRedMalice Could you not use; cin.sync() cin.get()?
FAB3Production 1 year ago
OMG SPOONFEEDING!!!!!!!!!! i remember this from his old tutorials, hopefully he catches up soon
alexz003 1 year ago
Where is the 6th Tutorial????
ScienceTutorials 1 year ago
Are you re-uploading tutorials or are you starting new c++ learning series?
You posted tutorial 5 after your posted tutorial 22!!! I don't understand whats going on and some explanation would be good because I don't know where to start exactly.
I thought you were going in chronological order. Perhaps you should tell people in the description whats going on.
X_X??????
Whirlwind1000 1 year ago
@Whirlwind1000 This is clearly explained in the first video in the series. The old tutorials were outdated, so he's making new updated ones.
TheRedMalice 1 year ago
This has been flagged as spam show
wierd i just did tht sense i pause it and pla with it so i can memorize it (user see sqrt thing)
Jdaman119 1 year ago
This has been flagged as spam show
wierd i just did tht sense i pause it and pla with it so i can memorize it (user see sqrt thing)
Jdaman119 1 year ago
This has been flagged as spam show
wierd i just did tht sense i pause it and pla with it so i can memorize it (user see sqrt thing)
Jdaman119 1 year ago
This has been flagged as spam show
wierd i just did tht sense i pause it and pla with it so i can memorize it (user see sqrt thing)
Jdaman119 1 year ago
wierd i just did tht sense i pause it and pla with it so i can memorize it (user ses sqrt thing)
Jdaman119 1 year ago
Comment removed
sam421kc 1 year ago
Thanks, man! I totally forgot about #include cmath when making a caculater lol
DrRandom101 1 year ago
Thanks for these! I've learned so much threw your tutorials
MalfunctionOnline 1 year ago
6th Tutorial?????
ScienceTutorials 1 year ago
<3 C++ :)
th3computeradmin 1 year ago
more we need more tutorials but im gona watch ya old ones now :) hope that you have the same version that i do now or all the scripting will be diffrent words
randomnatorable 1 year ago
please make 6th tutorial
brandyboy2202 1 year ago
And I love your VOICE!!!
It's not annoying like other Tutorials
ScienceTutorials 1 year ago
I want to learn C++ Graphics!
ScienceTutorials 1 year ago 79
@ScienceTutorials c++ graphics require directx and which is extremely hard to program
dadare6 1 year ago
@dadare6 I know
But hey! Its still cool!
ScienceTutorials 1 year ago
@dadare6 it isnt so hard :p go program in ASM and compare that!
Biohazard000Labs 1 year ago
@ScienceTutorials Be patient =)
LittleBigDood 7 months ago
Are you starting again? It would be much better if you continue the 29 tutorials you already have on c++.. really
CaTeJIuT 1 year ago
Hey Bucky I love your tutorials, I'm already an experienced C++ Programmer, but I need to learn Assembly so I can do inline asm with C++. Do you know any good tutorials for learning ASM or could you make a video sometime if you are experienced with low level programming languages ;D?
HadesKnightHeero 1 year ago
Anyone can learn the console. What I want to know is are you going to show how to program win32 programs. Or just console for us.
illusionfall 1 year ago
as a long time subscriber 2 u i advise MAKE TUT 6 NOW!
maxter1999 1 year ago
dude we are waiting for 6th tutorial...
GjeNgiX 1 year ago
hey bucky, how can I store the value after the "." in a number?
ie: 4.2354
I want store the .2354 to a new variable
sorry for my english, i'm from brazil
following you since 2009
Poneivanfa 1 year ago
@Poneivanfa hey here's all you need to do:
double a = 4.2354;
int b = a;
double c = a - b;
cout << c << endl;
now this works because when you try to assign the floating point number a to b, b is only declared as an integer and thus the fractional part (the "." part) is thrown away. hope it helps :)
sigpaaetknae 1 year ago
Bucky, Don't use system("PAUSE");
use cin.get() instead
system pause is bad for OS and makes other subroutines "hang"
google it :)
RickyBZA 1 year ago
USE CODEBLOCKS
PS I WANT TO SEE SOME ASM
RickyBZA 1 year ago
dude, i swear you had these tuts like a year ago, are you just reposting them or are they updated vids?
WSPSNIPER2 1 year ago
Your beautiful voice makes it so much more fun :-)
charlessmyth 1 year ago
make more.. more!! i want more!!
zamaddness911 1 year ago
holy crap your doing more c++ tutorials? awesome i love you man, no homo...
DamarSweetness 1 year ago
visual studio 2010 express is free but hard to use all the functionality if you are an absolute beginner. Codeblocks is best for beginners in my opinion because it is less intimidating.
DamarSweetness 1 year ago
I would also like to note that using namespace std; is not necessarily that great idea. It means you inherit all the bad of std. (No pun intended). You should also teach people the alternative of writing stuff like std::cout<<. Also, it is very odd to define using namespace std inside of main. If your going to use it I would highly advise you use it out of int main(). In addition, it is a good idea to make int main() int main(int argc, char *argv[]) or something like that for command line input.
stackoverflowuser 1 year ago
wtf mofo hahaha!
cm999 1 year ago
Er, two questions:
1. Shouldn't the "using namespace std;" be outside the main function?
2. Isn't using "system("pause");" Not good programming style?
ThatOtherNewsGuy 1 year ago
@ThatOtherNewsGuy 1. For this particular example it's not necessary, but generally you should do it just for good programming style and... well, to make shit work.
2. That's correct, making calls to the DOS is hella redundant. I will not elaborate, frankly because there's something called Google, and apparently, it's your friend.
:)
BenjaminProd 1 year ago
@BenjaminProd Haha, alright. I was just making sure I wasn't crazy about the "pause" thing. Thanks for the explanation though.
ThatOtherNewsGuy 1 year ago
@ThatOtherNewsGuy:
1) Not necessarily - namespaces defined as you describe, are global - which can occasionally be problematic when used in more advanced programs. The use thereof in a local scope ensures that it'll be used only there.
2) Yes. Since this is a beginner tutorial, I think Bucky used this to circumvent having to explain other concepts that a beginner would have to grapple with in addition to what he's teaching. A beginner acceptable equivalent is:
...
cin.get();
...
divinelyordained1 1 year ago
@divinelyordained1 whenever i use the cin.get() it just turns off in a ms like without it
i have windows 7, is that a reason maybe?
i read that linux user got to do cin.get...
Ruffy12589 1 year ago
@Ruffy12589 You can only use it if haven't used cin in that program
Airman9519 1 year ago
Bucky is bawss.
Best teacher I've ever had.
SeizureDude 1 year ago
Dear Bucky,
Your tutorials are the best on youtube!
BUT there is one big problem with them: you never finish the series(what happened to the IPhone rpg? And the php online game??) I thought you were 'so excited' about them?? . And then after a lot of years you start again with the series!(c++)...
Thank you
Tycho (tspider4)
ps please go on with IPhone (also for you best money profit)
Tspider4 1 year ago
but this is really nice to watch :D
FlightSimXtreme 1 year ago
You shouldn't be using system("pause");
use cin.get(); cin.sync();
FlightSimXtreme 1 year ago
Yuck... Plz don't use system("pause"); its really a bad deprecated thing. If you don't believe me google it.
stackoverflowuser 1 year ago
Hey Bucky, are you going to continue on your java videos?
RsKaa111 1 year ago
^-^Good, i want new tutorials woot ^-^
maxibabyx 1 year ago
my head hurts now...
RandomCrap202 1 year ago
yessss FINALLY DOODE!!!!
outlaw2411 1 year ago
It's an object oriented language so it's called a method, not a function. Thats what my teached told me.
marcusrehn 1 year ago
methods > functions :)
kieve11 1 year ago
@kieve11 You're saying Methods are the Same as Functions?... Noooooooo you're wrong
InsaneMetalSoldier 1 year ago
@InsaneMetalSoldier no i said methods are GREATER than functions
kieve11 1 year ago
@kieve11 Oh I see... a function is a method
so..
Functions == Methods;
InsaneMetalSoldier 1 year ago
@InsaneMetalSoldier when you place a function in a class its called a method so basically yeah
gonzo191 1 year ago
@gonzo191 what the hell are you talking about? There's no defined rule for when to use "function" or "method", they are synonyms, so you can use them interchangeably; just as subroutine and routine which is also equivalent in some sense to the word function (OR method.) It's just that in Java, functions are generally called methods; while in C++ they're generally called just that, functions.
BenjaminProd 1 year ago
@BenjaminProd Functions return values. Subroutines just do something... Simple as that?
InsaneMetalSoldier 1 year ago
@InsaneMetalSoldier No, subroutines == functions. Look it up :)
BenjaminProd 1 year ago
I called my variable double rainbow xD
TheSolgryn 1 year ago 20
@TheSolgryn All the way!
gustavohuink 1 year ago
@TheSolgryn
double rainbow!
all the way!!
what does it mean?
:DD
anitdragon13 1 year ago
I'm very happy to see that bucky stopped using a global namespace in his new videos, but system(ANYTHING) is still windows only, cin.get(), or cin.ignore(255, '\n') is the C++ standard way to pause the program, Love the videos still though.
blackfireize 1 year ago
@blackfireize Why the hell would it matter if he uses global namespace or system() or not ? I dont want to offend you, but im just wondering, why you are actually happy about that, lols.
LtuL1 1 year ago
@LtuL1 Global namespaces are bad coding practice, when people saw that he was using that type of code, most, assumed this was correct. Now i'm not claiming to be an expert but when multiple namespaces containing the same members are used in global scope, the resolution of those members are distorted, meaning you can't code properly.
As for system(), its a windows only function, this too is bad coding practice. C++ was made to be a cross-platform language, system() is not.
blackfireize 1 year ago
@blackfireize Well i think it wont matter, not at all. You wont programm any significant with the c++-knowledge he teaches, so things like that just dont matter.
LtuL1 1 year ago
@LtuL1 No it doesn't, but for aspiring programmers, who want to program for a job later on in life, I think Its important to have a good foundation, with good coding practice.
blackfireize 1 year ago
@blackfireize Well i do want to programm as job later on, but im far away from that. And yea, youre actually true.
And well, someone that is already really really good in programming, told me i wouldnt learn anything from tutorials, he told me to think of a programm that i would want to programm, and then he told me that i should try to do that. He also said that i will never learn programming in another way.
LtuL1 1 year ago
@LtuL1 Ich habe bemerkt, dass Englisch nicht Eingeborener zu Ihnen ist, spreche ich ein kleiner Deutscher, Wenn das Ihnen helfen würde, aber seine Tutorenkurse für einen zufälligen Programmierer, nicht echte nützlich sein können, aber ja Sie recht haben.
blackfireize 1 year ago
Good idea man, these tutorial series seems better the the older one. Keep teaching bro, C++ ftw!
GUE
hebronsawyers 1 year ago
This comment has received too many negative votes show
c'mon maaaaaaaannnn i was waiting for new java tutorials. for example i really need to learn multithreading. c++ is sucks.JAVA RULZ!
akfbtr 1 year ago
@akfbtr I think there are enough java tutorials made by bucky already. just go in fucking google and check for the thing you want. now shut the fuck up and let the C++ programmers watch fucking retard..
r3sp3c791 1 year ago
@r3sp3c791, okay calm down buddy. his tutorials are the best and i have already fuckin 4 books about java and so many other materials too but no one can tell better than bucky, you know it. anyway, you will pass to java or c# someday also.
akfbtr 1 year ago
well , we need a advanced helping .. inheritance , virtual , classes , operator and so on .. that is what we really need .. thank u any way ,, hope to continue from A to Z ..
yasserovic1 1 year ago
lol STD
dan007iel 1 year ago
@88EdwardElric88
lol yes confusing....I was like wtf??
SWAT091 1 year ago
u better take this far :>
eliteveteran 1 year ago
cout << "didn't get C++ a couple months ago but now pretty easyy :D " << endl;
pew2007 1 year ago
will you or ahve you gone through C#? im learning C# at school and i want u to do it to ! :D
mrLYLiX 1 year ago
listen all, use C#, thats the best programing language. this one slows computers like JS
dranoel1963 1 year ago
@dranoel1963
Dude C# is gay!!! its uses ,net which is very very gay!! and C++ is not slowing down the computer -.- fucking noob
iPhpMaster 1 year ago
haha i love the tab above the video
gaztheace 1 year ago
Please do MORE after effects tutorials!!!
TeamxDRx 1 year ago
@TeamxDRx
fuck after effects c++ is better..
iPhpMaster 1 year ago
nice bucky it will help me at school :D :D you are smart xD
liutaso 1 year ago
Yo Bucky its late go to sleep
locolalo1364 1 year ago
I agree with rom2014, you should switch to codeblocks. Not only is Dev-C++ no longer being maintained it also comes with an oudated compiler and an outdated debugger.
Turbolord 1 year ago
Hey, switch over to Codeblocks, it's so much better than bloodsheds Dev-C++. And it's free!
rom2014 1 year ago 9
Comment removed
iPhpMaster 1 year ago
@rom2014
Agree!
iPhpMaster 1 year ago
@rom2014 And another plus, Codeblocks is a cross-platform IDE, meaning that Linux users can follow the videos more easily.
BrixXSM 1 year ago
@rom2014 visual studio 2010 please or visual c++ express its free and better
Jamaica4Lyphe 1 year ago
@rom2014 Dev is also free there is also a new version called wxDev-C++ it has some additional stuff
Airman9519 1 year ago
@rom2014 Roflmao! Dev-Cpp is free too?
AKDSoftware 1 year ago
@AKDSoftware Yes I know that.
rom2014 1 year ago
@rom2014 he doesnt care lol
Biohazard000Labs 1 year ago
@rom2014 whats so good about it?
sisudo21 1 year ago
@sisudo21 Read the other comments they explain it better :)
rom2014 1 year ago
@rom2014 How is it better? Anything you can do on devc++ you can do on c::b and visa vera, the only thing I can think of is if you type { it makes a } a few lines down, a compiler is a compiler =/
LeetGamer4L 1 year ago
10th, Pro style!
MrSaggat 1 year ago
waw 9th DAM IT!!
cifi10 1 year ago