0
Could anyone provide me a good basic project to implement in C++?
I want to improve my skills in C++. I just finished the SOLOLearn tutorial on C++ and I wanted to start with a small project to put in hands everything that I learnt. I hope you can help me.
4 Respostas
+ 1
The website of bjarne stroustrup , the creator of c++ offer various exercises. currently I am reading his book, the c++ programming language, and I love it.
It is in deph provides useful examples and is accurate.
An major example at the beginning (not really object orientated, no ressource managment) is a calculator for the console which is expanded in the excercises.
In the end you can difine custom function and its like a little script language. The source is at his homepage. It gives you a good idea of plain style.
Implement and extend it! or try a similar calculator on your own.
+ 2
Try a simple game
0
Thank you all. I really appreciate your help. I am going to check all your advices, specially the one gived by "No one".