new member

Hi everyone, I am a new member. I know c ++. I am looking for a course to teach about c ++. I hope you can help me in the process of acquiring knowledge about c ++ in the forum. thank you
(1) Get yourself a compiler.
What operating system are you using?

(2) Have access to documentation.
https://cppreference.com/
http://www.cplusplus.com/reference/

(3) If you can, get a book (for beginners).
https://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list

(4) Follow a tutorial. There are many.
https://www.google.com/search?q=c%2B%2B+tutorial

(5) Practice. Practice. Practice.
Write as many programs as you can. Start simple, modify them to do more stuff. Once you become comfortable with writing simple programs and compiling and executing them, you are ready to move on to the most interesting step:

(6) Explore your interests.
Google around things you would like to learn.

What are you wanting to do?
Video games?
Text editors?
Image processing?
Data transformation?
Any other program you have in mind?
learncpp.com - Can't Recommend Enough
The tutorial here at cplusplus, though it hasn't been updated in years.
http://www.cplusplus.com/doc/tutorial/

A tutorial that is updated regularly is Learn C++
https://www.learncpp.com/

Write code. With a modern compiler that can support the current standard.

Post your code here (A biggie!) and ask questions when confused or not sure.

Help us to help you by posting code with code tags (An even bigger biggie!!!). PLEASE!
http://www.cplusplus.com/articles/jEywvCM9/

When getting compile time errors, post the ENTIRE error. Not just a self-written summary. You may not understand what the error is, from experience many people here do.

When getting feedback DO NOT take it personally. Some people are very blunt when offering advice or criticism. In the long run that is a good thing, you can learn a lot from that type of feedback.

When getting feedback with code snippets, especially with C++ constructs you've never seen, PLEASE don't complain. The code might show things you've haven't learned yet, or if it is an assignment using parts of C++ you can't use. DO ask questions about what the code snippet does.

I personally have learned more about C++ since being active here than I ever did trying to self-teach myself.
Last edited on
Topic archived. No new replies allowed.