250,383
Loading...
Uploader Comments (LearnToProgramDotTV)
Top Comments
-
yay! now I can launch "Hello World" in HTML PHP CMD and C!
too bad thats all i know. :(
-
Is this for Game Programming?
see all
Video Responses
see all
All Comments (521)
-
never mind guys
-
IT DOESNT WORK PRINTF(:HELLO WORLD"); COMES UP RED
-
@LearnToProgramDotTV ThnQ ^^
-
Yes my name is mark.
-
Does the software work for windows 7
-
I want this video on my GB220 unit.
-
MY NAME IS MARK!! YEAHHHHHHHHH
Loading...
i have a question, what is the difference between C++ and DevC++?
AngelElham 1 week ago
@AngelElham C++ is the language itself. DevC++ is a piece of software used-- specifically a text editor-- used to construct C++ software.
LearnToProgramDotTV 1 week ago
C and C++ aren't the same correct? I'm looking to get started with C and move on to Object-C and than Cocoa. If I start reading up on C++, will I still be able to relate to Object-C and Cocoa?
gbeehler 1 month ago
@gbeehler I would go the C route. C++ provides unnecessary and overcomplex features that are not needed to simply move to Objective C in my opinion.
LearnToProgramDotTV 1 week ago
in my book it says to type "int main(0)" rather than just "main(0). still works fine. but what are the differences between the two.
also it says "return(0)" rather than "getchar()" ?
techfighterminal 3 months ago
@techfighterminal int main(0) is used if the main function returns an integer-- Which many argue the main function always should. Either will work, however. That's why you see the return(0) at the end of some methods. The gethchar() is used to hold the command line window open until the user strikes a key.
LearnToProgramDotTV 2 months ago