CSC270 Survey of Programming Languages PowerPoint
Lab Exercise #3.3 of Downey
Good exercises: Downey Exercise 3.4 , 5.1, 5.2, 5.3, 5.4, 5.5, 5.7
Pointer and Dynamic Array Summary
Nice example in head first c pointer chapter http://www.it-ebooks.com/html/C_and_CPP/Head_First_C_129114_185903_4.html
Good lab exercises: http://www.csc.villanova.edu/~mdamian/Past/csc2400fa11/notes/plab.pdf
std::string vs cstring (c style string or character array) : http://www.tutorialspoint.com/cplusplus/cpp_strings.htm
namespace std contents: http://en.cppreference.com/w/cpp/header
good reference of all standard c++ libraries: http://www.cplusplus.com/reference/
Find all string methods:
Good string tutorial: http://www.cprogramming.com/tutorial/string.html
Short String presentation:
Make Files
http://mrbook.org/tutorials/make/ - good makefile tutorial
overloading: http://www.learncpp.com/cpp-tutorial/92-overloading-the-arithmetic-operators/
Inheritance and friends: http://www.cplusplus.com/doc/tutorial/inheritance/
inheritance summary
http://www.cplusplus.com/doc/tutorial/dynamic/ - good dynamic memory allocation tutorial
http://www.cplusplus.com/doc/tutorial/files/ - good file i/o tutorial
Full version of powerpoint we did not use: C++ More on Classes