DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

C++

Lessons available

core Extensions: .cpp, .cc, .cxx, .hpp, .h Official docs ↗
Open lessons References Exercises Examples Back to Languages
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.