Skip to main content
2 answers
2
Asked 288 views

Why is c++ considered one of the toughest languages to learn?

Why is c++ considered one of the toughest languages to learn?

+25 Karma if successful
From: You
To: Friend
Subject: Career question for you

2

2 answers


3
Updated
Share a link to this answer
Share a link to this answer

Harish’s Answer

C++ is generally considered tough because you need to understand concepts such as pointers, memory management, and templates to be able to use it effectively. Though C++ is simply another programming language at the end of the day, pointers/memory management/templates may take some time to get used to.

It's syntax is also tougher to learn than languages such as python. Templates may be tough to learn, and debugging STL may be tough as well. Similar to Java, C++ is statically typed, which means you must declare the data types of all your variables before running the program; you can't just declare variables without data types, like you can in python.

But if you practice C++ and get good at it's syntax and required concepts, you'll enjoy C++'s speed and versatility. Your C++ skills will also transfer over to Java, and you'll be a good Java programmer.

Harish recommends the following next steps:

Learn the basic syntax of C++
Learn the various basic concepts, such as pointers/memory management/templates
Make a basic project in C++
3
0
Updated
Share a link to this answer
Share a link to this answer

Venkat Raghavan’s Answer

Almaz, you can always start with the basics and slowly get into advanced concepts. That is true for learning almost anything.
0