C++
C++ extends C with object orientation, templates and zero-cost abstractions. It's the choice for game engines, high-performance software, browsers and critical systems where every microsecond counts.
- Creado por Bjarne Stroustrup
- Año 1985
- Paradigma: Multi-paradigm · compiled
- Extensiones: .cpp, .cc, .cxx, .hpp, .h
Para qué se usa
- Game engines
- High-performance software
- Embedded systems
A favor
- Top performance
- Low-level control
- Very powerful
En contra
- Steep learning curve
- Complex & vast
- Easy to make mistakes
Ecosistema
- Qt
- Boost
- STL
- Unreal Engine
- POCO
- CMake
- vcpkg
Ejemplo
#include <iostream>
int main() {
std::cout << "¡Hola, mundo!\n";
}