10-18-2009, 11:49 AM
Very good tutorial man!!
Learn C++ (The Correct Way) - Lesson 1
|
10-18-2009, 11:49 AM
Very good tutorial man!!
10-22-2009, 11:41 AM
(This post was last modified: 10-22-2009, 11:41 AM by flAmingw0rm.)
Great tutorial dude. Nicely written, keep up the good work.
10-24-2009, 06:36 AM
Very good beginner tut.
When i try to install C++ Express Edition, i get a error, it just says like Microsoft Visual C++ SP1 - ENU. Any fix for that, im using Vista.
10-25-2009, 04:21 AM
very nice tutorial... book marking this so i can come back when i have downloads so i can download the compilers and actually do this
10-25-2009, 04:35 PM
This thread just gave me deja-vu, anyway, Codeking: you posted this on HF did you not?
Do what thou wilt shall be the whole of the Law. Love is the law, love under will.
.::The Rights of Man::.
10-25-2009, 04:54 PM
10-27-2009, 08:11 PM
nice CodeKing lol Im relearning c++ to catch back up.
08-05-2011, 07:29 AM
(This post was last modified: 08-05-2011, 07:30 AM by icecubemachines.)
Sorry, I have to rant on namespaces and such.
Instead of: Code: #using namespace std; You could just use: Code: #using std::cout; The difference: Instead of being too general and saying "I want to use everything from the library std", you limit it to "I want to use cout, cin and endl from the library std". It gives a nice balance between safety and comfort. And if someone else ever reads your code, they can immediately see what's being "used". ^^ The copy-paste version would look like this: Code: #include <iostream>
08-07-2011, 11:18 AM
Good job, but not useful at all.
Millions of tutorials already out there, this is nothing unique. |
« Next Oldest | Next Newest »
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
Learn C++ (The Correct Way) - Lesson 2 | Code King | 12 | 3,837 |
04-07-2012, 06:05 PM Last Post: AceInfinity |
|
At What Age Did You Learn C++ | Win | 66 | 20,656 |
12-11-2011, 02:52 PM Last Post: Neel |