@Ciemon I just realized that he made a completely new set of tutorials... I watched 1-29 of the first series where he was using Dev-C++ and then from 30 on he was using this... I was wondering why he didn't mention the new IDE. sigh lol
@Vapula909 I thought you realised that when you deleted the comment above. Though I saw what you wrote in the email I got so I replied anyway... A little rub in your face ;)
Haha but seriously though, I kept missclicking so I ended up on the other tutorials instead of these too so I know how it happened!
@cssadiction 'x' didnt replace bucky, it just changed the index. as x went from 0 to 1 to 2 to 3 to 4..... bucky took that in like bucky[0] bucky[1] bucky[2].....
@Vorbis5 Ohh, I wasn't aware that you could make an int when in a loop. What I was taught to do was create the ints at the beginning of the function (or create it globally), then inside the for loop say x = 0 when declaring.
@cssadiction You just dont want to declare the variables inside the loop body, otherwise everytime the loop repeats, it would redeclare the integer again each time, which is kinda bad. For the while loop you should do this: int sumNum = 50; int x = 0; while (x < 5) {sumNum -= 10; x++;} and not this: int x = 0; while (x < 5) {int sumNum = 50; sumNum -= 10; x++;}
@Vorbis5 Ohh I see now. C++ is so fucking annoying. I should stick to php until i got the experience to continue to such a language like c++. I guess it's all fun & games though.
@cssadiction don't lose your motivation man.. If you don't understand something just keep practicing over and over and you'll get it... Programming learning curve is very hard to get over but once you are past the learning curve it gets easy.
the use of this is for example if you replace the bucky[x]=99 with user input cin>>bucky[x] or with some value you use . Depends in which program. This is just basic way to fill a array faster than typing all the elements!
LOL "cout with me get your figures out"
MrPitbull917 1 week ago in playlist C++ Programming Tutorials Playlist
Another awesome tutorial. Thank you, Bucky!
MrAlexanderHoff 1 month ago in playlist C++ Programming Tutorials Playlist
Thank god for your clear, concise, no-accent tutorials! I'm being taught the sesame street count and have hardly been able to understand a thing
Hiccuple 1 month ago
Watching this drunk! That's how I roll :P
1Razerkey 1 month ago in playlist Buckys C++ Programming Tutorials Playlist
I will reccomend for everyone to watch every single video, from the beginning, because bucky has arranged the material concepts so good..
r00tring 2 months ago 2
which program is this? i am asking because of the non-required "return 0" and some cool accessories
hede56hodobnm 3 months ago
@hede56hodobnm Codeblocks, which he showed you if you had watched from the start :)
Ciemon 3 months ago
@Ciemon ok thanks.
hede56hodobnm 3 months ago
Comment removed
Vapula909 3 months ago
@Vapula909 I believe not.
Ciemon 3 months ago
@Ciemon I just realized that he made a completely new set of tutorials... I watched 1-29 of the first series where he was using Dev-C++ and then from 30 on he was using this... I was wondering why he didn't mention the new IDE. sigh lol
Vapula909 3 months ago
@Vapula909 I thought you realised that when you deleted the comment above. Though I saw what you wrote in the email I got so I replied anyway... A little rub in your face ;)
Haha but seriously though, I kept missclicking so I ended up on the other tutorials instead of these too so I know how it happened!
Ciemon 3 months ago
"What's one extra character?" BUCKY!?!?! Where did your laziness go!?!?!
MrSoddish 7 months ago in playlist Bucky's C++ 7
@MrSoddish it was assigned a value of 99 :(
Ezraked 6 months ago in playlist TheNewBoston - C++
This has been flagged as spam show
"pretty cool huh?"
treefangers 8 months ago
mmmmm.....maybe use the random number generator from a previous lesson to fill array ????
MrLowesc 8 months ago 6
@MrLowesc I know you posted this 4 months ago but I just had to say, thanks for the practice idea!
lVlegabyte 3 months ago
Comment removed
Filipa1122 9 months ago in playlist Bucky's C++ Programming Tutorial Series
I'm confused, when he puts "x", why did that replace the int "bucky" he made? Does C++ automatically know that "x" can replace another int's name?
cssadiction 10 months ago
@cssadiction 'x' didnt replace bucky, it just changed the index. as x went from 0 to 1 to 2 to 3 to 4..... bucky took that in like bucky[0] bucky[1] bucky[2].....
Vorbis5 10 months ago
@Vorbis5 Ohh, I wasn't aware that you could make an int when in a loop. What I was taught to do was create the ints at the beginning of the function (or create it globally), then inside the for loop say x = 0 when declaring.
cssadiction 10 months ago
@cssadiction You just dont want to declare the variables inside the loop body, otherwise everytime the loop repeats, it would redeclare the integer again each time, which is kinda bad. For the while loop you should do this: int sumNum = 50; int x = 0; while (x < 5) {sumNum -= 10; x++;} and not this: int x = 0; while (x < 5) {int sumNum = 50; sumNum -= 10; x++;}
Vorbis5 10 months ago
@Vorbis5 Ohh I see now. C++ is so fucking annoying. I should stick to php until i got the experience to continue to such a language like c++. I guess it's all fun & games though.
cssadiction 10 months ago
@cssadiction haha. just practice my friend
Vorbis5 10 months ago
@cssadiction don't lose your motivation man.. If you don't understand something just keep practicing over and over and you'll get it... Programming learning curve is very hard to get over but once you are past the learning curve it gets easy.
onelerv1 4 months ago in playlist Buckys C++ Programming Tutorials Playlist
@cssadiction yes
weswii 6 months ago
What compiler is this?
deathbyaccident 10 months ago
@deathbyaccident codeblocks
coder1997 10 months ago
@kraeukai
the use of this is for example if you replace the bucky[x]=99 with user input cin>>bucky[x] or with some value you use . Depends in which program. This is just basic way to fill a array faster than typing all the elements!
MrEnchom 11 months ago
but if you use this way you are allways assingning the same value to every index
and that is not the purpose of an array
so whats the use of this?
kraeukai 11 months ago
THANK YOU BUCKY!
fanreymysterio619 11 months ago 2