Why games made with C++ are more optimized?

522 views

C++ is the language used in almost all AAA titles. I seen youtube tests that show C++ to execute tasks faster than C# or Python for example. But i heard C is faster than C++ also, so why C++?. And what makes C or C++ faster than other languages (except assembly and machine code of course)?

In: Technology

8 Answers

Anonymous 0 Comments

I believe it’s got something to do with memory management and allocation. Using its different pointers to add/delete/edit data sets in the most efficient way.

You are viewing 1 out of 8 answers, click here to view all answers.