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

CPP Reference: OOP

Quick reference for OOP.

Read time: 1 min Words: 14
My Progress

CPP Reference — OOP

Quick summary of OOP with syntax and example.

Syntax

int main(){ ... }

Example

#include <iostream>
using namespace std;

int main(){
  cout << "Hello C++" << endl;
  return 0;
}