Skip to main content

C++

PropertyValue
descriptionGeneral-purpose compiled programming language derived from C and widely used for systems, performance-critical software, and application development.
tagsref

C++ is a general-purpose compiled programming language derived from C and widely used for systems software, performance-critical applications, game engines, tools, and large native codebases.

It extends C with additional abstraction, type, object-oriented, generic, and modern language features.

What it does

C++ is used to build native software with high control over performance and memory behavior.

It is commonly used to:

  • Build operating system and systems-level components
  • Develop game engines and real-time software
  • Write performance-sensitive libraries and tools
  • Build desktop applications and native frameworks
  • Create embedded and low-level software

Core concepts

C-derived but distinct

C++ evolved from C, but it is not just "C with extras".

It has its own language model, standard library, and modern programming patterns.

Compiled native language

C++ is typically compiled to native machine code.

That makes it relevant when runtime performance and hardware-level control are important.

Multiple programming styles

C++ supports procedural, object-oriented, generic, and low-level systems programming styles.

That flexibility is one of its strengths, but also one of the reasons it can be complex.

Common use cases

  • Game development
  • Compilers and developer tools
  • Native desktop software
  • Embedded systems
  • Performance-critical libraries and infrastructure

Practical notes

  • C++ is powerful, but the language and ecosystem are large and complex.
  • Modern C++ is very different from older C++ codebases in style and best practices.
  • It remains one of the most important languages for native and high-performance software.
  • C++ and C# are completely different languages despite the similar names.

Sources Used

Frequently Asked Questions

Is C++ the same as C?

No. C++ comes from C historically, but it is a separate language with its own features and programming model.

Is C++ only for low-level code?

No. It is widely used for low-level work, but also for application software, libraries, engines, and tools.

Is C++ the same as C#?

No. C# is a different language and platform family.