c++ Programming Tutorial 3
25 Responses to “c++ Programming Tutorial 3”Leave a ReplyPosted on July 3rd, 2007 by admin Filed under C | |
|
c++ Programming Tutorial 3
25 Responses to “c++ Programming Tutorial 3”Leave a ReplyPosted on July 3rd, 2007 by admin Filed under C | |
|
November 24th, 2007 at 9:27 am
Hey, was wondering …
Hey, was wondering in your first video you said you were using DevC++ program but in another you’re using Visual? Wich one are you using? Wich one is the best for newbies?
November 28th, 2007 at 2:28 am
does he memorize …
does he memorize all of this information… seems impossible, there are probably thousands of notation and apllication, i kow he’s a talented programmer but does he look some of this syntax up somewhere
November 28th, 2007 at 3:25 am
Just want to say …
Just want to say you are one of the best teachers of c++ on utube so cheers mate.
December 1st, 2007 at 3:55 pm
There both the same …
There both the same thing. Its just which one your more used to. If i were you id use DevC++ cuz its free and easy to find. just search google.
December 9th, 2007 at 12:54 pm
distance=speed * …
distance=speed * time
for example, if a train travels 40 miles per hour for 3 hours, the distance traveled is 120 miles. write a program that asks for the speed ofa vehicle(in miles per hour) and the number of hours it has traveled. it should use a loop to display the distance a vehicle is traveling at 40 mph for a 3 hour time period. it should display a report similar to the one that follows:
hour - 1 distance - 40
hour- 2 distance- 80
hour- 3 distance - 120
help please?
December 19th, 2007 at 5:10 am
hey dude, REALLY, …
hey dude, REALLY, THANKS !!! I am learning that in school too, but if i dont get it i can watch your videos ^^ REALLY THANKS!!
PS: hey can you tell me how you made that video ? please. thanks.
December 24th, 2007 at 10:27 am
Great, I’m going to …
Great, I’m going to apply for a C++ position at Microsoft… I don’t think they ever came up with a gum ball program. Thanks man!
January 4th, 2008 at 3:53 pm
I’m Having errors …
I’m Having errors with the -> end1 statement.
it says its not identified and i followed the program through.
I’m using Visual C++ express edition, I wonder, with this program do I need end1?
January 4th, 2008 at 4:27 pm
I’m getting an end1 …
I’m getting an end1 statement error, saying its not declared, if I need to how do I do it.
using Microsoft visual c++ express edition
January 4th, 2008 at 4:57 pm
LOL, OPPS ITS endl
…
LOL, OPPS ITS endl
nvm
January 7th, 2008 at 9:10 pm
i cant post a …
i cant post a comment
January 7th, 2008 at 9:11 pm
oh wait sorry i can …
oh wait sorry i can, the one i posted must have been too long. its about the program not handling spam well, if you enter high numbers quite a few times the program eventually starts to freak out and keeps going by itself writing line after line of “Enter your guess: Too high!”
January 8th, 2008 at 8:40 am
it’s “<<endl” as in …
it’s “<<endl” as in “END L : End it LARRY!!”
January 11th, 2008 at 2:01 pm
did exactly what …
did exactly what you did, but had 16 errors…
January 15th, 2008 at 11:24 am
i have 2 errors on …
i have 2 errors on the system CLS line and I did it just like this.
January 25th, 2008 at 9:37 am
Guys instead of …
Guys instead of saying im getting an error here, paste your lne of code in to so we can see
January 25th, 2008 at 1:33 pm
haha
haha
January 28th, 2008 at 6:23 pm
C++ is case …
C++ is case sensitive
Make sure it is system(”CLS”); and not System(”CLS”) or SYSTEM(”CLS”;
January 29th, 2008 at 7:53 pm
Though this may not …
Though this may not be true as Im not looking at the page I read this on, it may depend on how your using it…
January 29th, 2008 at 7:53 pm
eh probably because …
eh probably because your computer can’t handle the huge allocation in c++ Iv been reading an Advanced C++ gamers book, although Im having trouble understanding somethings, but I think for every 1 number in a problem takes up 2 bytes to complie so for instance if you had a number like say 1 billion , 1000000000, multiply that by 2 and ur memory allocation is drasticly used up in the stack, causeing ofr the program to crash or act spartically.
January 29th, 2008 at 7:54 pm
oh btw this is a …
oh btw this is a reply to 1OmniDude1’s comment
January 29th, 2008 at 8:12 pm
hmm, makes sense …
hmm, makes sense for the most part i guess. Thanks for the info .. so other words my comps crap and can’t handle a basic program. lol.
January 30th, 2008 at 3:18 pm
Once again, the …
Once again, the simplicity of your tutorials amazes me. Even I understood it.
Excellent work.
February 10th, 2008 at 7:42 am
how do you do the …
how do you do the modulous sign with your keybaord??!???
February 10th, 2008 at 10:13 am
Have you tried …
Have you tried making a program that plays the tic-tac-toe game?