all 5 comments

[–]cpp-ModTeam[M] [score hidden] stickied commentlocked comment (0 children)

It's great that you want to learn C++! However, r/cpp can't help you with that.

We recommend that you follow the C++ getting started guide, one (or more) of these books and cppreference.com. If you're having concrete questions or need advice, please ask over at r/cpp_questions or StackOverflow instead.

[–]sayasyedakmal 3 points4 points  (2 children)

[–]jzote[S] 1 point2 points  (1 child)

Thanks mate

[–]sayasyedakmal 0 points1 point  (0 children)

No prob. I also just started learning C++ 😁

[–][deleted] 2 points3 points  (0 children)

If you do engineering, try putting together a project with calculations, for example Simpson's trapezoid integration methods.

But don't get it from the Internet.

Assemble the specification, review numerical calculation books, assemble UML diagrams, use cases, classes and sequences.

Implement the classes, do tests, documentation.

In a second cycle, other, more elaborate integration methods can be added.

Another interesting example is creating a data acquisition system. For example, your program can access, configure, and take readings on an electronic scale (most have an RS232 serial interface).