Up next


How To Learn C++? (C++ Programming)

7 Views
Published on 03 Dec 2014 / In Film & Animation

?? Check Out The NEW Simple Programmer YouTube Channel With NEW Programming Videos:
https://simpleprogrammer.com/yt/spnewytchannel ?
How Do I Learn C++ Programming?

Learning C++ is one of the most discussed topics among software developers. C++ is definitely not an easy programming language to learn and so, there are a lot of confusion that surrounds people when it comes to learning c++

So, first of all, there are some things you need to know first, before learning c++ that applies to learning almost any programming language.

Most starting programmers, when they want to learn to program, pick up a book and start reading.

While there are some excellent books out there which attempt to teach you programming in a very hands-on approach, I think the best place to start is by looking at the source code of an actual working application and trying to figure out as much of what is happening as possible.

This is difficult.

It's going to feel uncomfortable, but that's ok. Get used to feeling uncomfortable. That is the only real way to grow in life.

What I want you to do is to pick an open source application-preferably a popular one that is likely to be well-designed-and start looking through the source code.

You can find plenty of projects on GitHub, so I'd recommend checking there.

It's beyond the scope of this book, but it's even better if you can download the code and build and run the application yourself.

If you have a friend that can help you with this, that's great. If you don't, it's ok.

What is important is that you explore the code to get a feel for what the programming language syntax looks like and that you try and read the code and see if you can understand or make sense of anything.

Use the application itself, if possible, so you can get a feel for the relationship between the code and what the code does.

Like I said, this is going to feel very uncomfortable.

You might feel like you're not understanding anything.

Here are some pros of learning C++:

- Is extremely popular, and therefore lots of support is available.
- Has a large base of freely available code for download, while also supporting direct integration with ASM and C.
- Is very powerful, and can be used to create just about any program, including low-level system programs.
- There is a compiler for C++ on every major operating system. C++ programs that are purposely written for portability will work on many major operating systems with little change in code.
- C++ is a language which is compiled (transformed from human readable code to low-level machine code), so it can often run faster than languages such as Java, Python, and C#; as it does not depend on an interpreter or a "run-time environment" which must be loaded beforehand.
- Has a long established usage base that likely guarantees support for the language will continue for quite some time.
- Many languages are based off of C/C++, such as Java, so knowledge in C++ will make it easier to understand these languages.
- Has a relatively small associated C++ Standard Library as compared to languages such as Java's Standard Platform SDK or C#'s .NET Framework, permitting greater versatility and reducing the system footprint of resulting compilations.
- Has a significant number of open source libraries available, including the Boost which are freely and widely available.

So, despite that, there are a lot of resources you need to be aware of when it comes to learning c++. Wanna know more about learn c++ programming? Watch this video and find out!

If you liked this video, share, like and, of course, subscribe!

Other Important Links: Effective C++:
www.amazon.com/gp/product/0321334876/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=0321334876&linkCode=as2&tag=makithecompsi-20&linkId=4CGZD4EQGGXRJ72P
NEW! Effective Modern C++: 42 Specific Ways to Improve Your Use of C++11 and C++14:
www.amazon.com/gp/product/1491903996/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=1491903996&linkCode=as2&tag=makithecompsi-20&linkId=4PCOW4MI5NVR3U4X
Code Complete:
www.amazon.com/gp/product/0735619670/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=0735619670&linkCode=as2&tag=makithecompsi-20&linkId=GNG7WLS5E2TXU72Q

Visit Simple Programmer Website: http://simpleprogrammer.com/

Connect with me on social media:
Facebook: https://www.facebook.com/SimpleProgrammer
Twitter: https://twitter.com/jsonmez

Other Links:
Sign up for the Simple Programmer Newsletter: http://simpleprogrammer.com/email
Simple Programmer blog: http://simpleprogrammer.com/blog
Learn how to learn anything quickly: http://10stepstolearn.com
Boost your career now: http://devcareerboost.com

How Do I Learn C++ Programming?
Related Topics: c++, learn c++, learn c++ programming, c++ programming, c++ programming language, c++ for beginners, effective c++, best places to learn c++, coding, education

Show more
Responsive image

Log in to comment


0

Up next