|
|
|
|
|
by Veratyr
3214 days ago
|
|
As a newcomer to C++ myself, I found Stanley Lippman's C++ primer to be helpful. The latest edition includes the newer features. And in case it helps, the main things I find myself using differently to C are: - Smart pointers. If you're not using them, use them. They're amazing. Seriously. Never have to worry about freeing something ever again. - Object oriented design. - Const reference arguments. - The occasional auto. |
|
One word of warning though, there's a confusing similarly titled book called "C++ Primer Plus" which you should avoid at all costs.