C++ Introduction
C++ Introduction
C++
By Eng.Adulahi M. Adan
http://www.mahergelle.com
Chapter One: -
C++ Introductions
C++ Introductions
Contents
What is C++?
C++ is a cross-platform language that can be used to
create high-performance applications.
C++ was developed by Bjarne Stroustrup, as an extension
to the C language.
C++ gives programmers a high level of control over system
resources and memory.
The language was updated 4 major times in 2011, 2014,
2017, and 2020 to C++11, C++14, C++17, C++20.
Why Use C++
Contents
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!";
return 0;
}
Example explained
Contents