C++ Introduction

What is C++?

C++ is a cross-platform language that can be used to create high-performance applications. It is an extension to the C language.

Why Learn C++?

Example

#include <iostream>

int main() {
  std::cout << "Hello World from C++!" << std::endl;
  return 0;
}