Introduction to C++

What is C++?

C++ is a general-purpose programming language created by Bjarne Stroustrup...

First C++ Program

#include <iostream>
using namespace std;

int main() {
  cout << "Hello World!";
  return 0;
}

This program demonstrates:

  • #include directive for headers
  • main() function as entry point
  • cout for output