SahinTC
- 19
- 0
I've been programming in C++ for around four to five years right now, and have to say I wish I had a tutorial like that when I started.
You might really want to teach Hungarian notation and standard naming conventions though.
Err, you know:
methods: methodNameHere()
constant: CONSTANT_HERE,
integer: iNum1, iNum2,
float: fNum1, fNum2
I say this because it really helps make the code neat and simple to read and understand.
Also, for anyone else interested, I would highly recommend the Deitel and Deitel book, C++ How to Program. Hands down one of the best books for beginners.
EDIT: Might also want to include a blurb on http://bloodshed.net, in my opinion the best free IDE for C++ there is. IDEs generally make the process of learning how to code from scratch much easier than working with commandline executed compilers. Plus, syntax hilighting is nice. :)
You might really want to teach Hungarian notation and standard naming conventions though.
Err, you know:
methods: methodNameHere()
constant: CONSTANT_HERE,
integer: iNum1, iNum2,
float: fNum1, fNum2
I say this because it really helps make the code neat and simple to read and understand.
Also, for anyone else interested, I would highly recommend the Deitel and Deitel book, C++ How to Program. Hands down one of the best books for beginners.
EDIT: Might also want to include a blurb on http://bloodshed.net, in my opinion the best free IDE for C++ there is. IDEs generally make the process of learning how to code from scratch much easier than working with commandline executed compilers. Plus, syntax hilighting is nice. :)
Last edited by a moderator:
