I have tried learning C++ in the past and have always failed because it was so overwhelming. I recall when I tried in the past, I would frequently run into multiple things that achieved the same end and I would also run into things that I could not think of as ever being useful. I have decided to give this another go and use a more Tim Ferriss oriented mindset. So my questions is:
What are the 20% of C++ principals that I should learn that will enable to make pretty much any program? EX: Variables, IF statements, ETC.
I am not looking to be a seasoned or efficient programmer. Just a hobby in my free time. I want to have a basic tool kit so I can pretty much do anything with a little 'Ghetto Rigging'.
I have always fantasized about making a Black Jack game and that was always the goal when I tried learning in the past. If there are any specific things you can think of that specifically apply to making that, please share!
I have tried learning C++ in the past and have always failed because it was so overwhelming. I recall when I tried in the past, I would frequently run into multiple things that achieved the same end and I would also run into things that I could not think of as ever being useful.
You need to decide what you want to do, then do it.
I am not looking to be a seasoned or efficient programmer. Just a hobby in my free time. I want to have a basic tool kit so I can pretty much do anything with a little 'Ghetto Rigging'.
I have always fantasized about making a Black Jack game and that was always the goal when I tried learning in the past. If there are any specific things you can think of that specifically apply to making that, please share!
I would recommend starting by reading up on variables, arrays, loops, if/else statements and ternary operators, as it is likely all would be used in a program such as a Blackjack game. I recently coded a game of war making use of all of these, and considered the changes required to convert it to blackjack.
Luckily, these things are all pretty basic, and don't require a large amount of research or practice to get the hang of.