Summary
C++ builds on C with OOP and modern features; used in games, engines, and high‑performance apps.
Slug
cpp
Tier
core
Extensions
.cpp, .cc, .cxx, .hpp, .h
Hello World
#include <iostream>
int main(){
std::cout << "Hello, World!" << std::endl;
return 0;
}
Tip: you can expand this page later with official docs + trusted references.