Sunday, 14 August 2016

Starting with C++ knowing the basics







I've been messing around with C# for some time now and I know how to work with variables, classes, parameters etc. I'm learning more everyday and I would like to start with C++. I've been looking around, but every book or course I find starts at the very basics of programming in general.




Who knows some good C++ material for people who already know the basics?



thanks in advance!

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...