Introduction To Computer Programming
Introduction To Computer Programming
Programming
C++ programming
Key Words to be understood are;
Algorithm
Machine Language
Assembler Language
High-level Language
Algorithm
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 3 major times in 2011, 2014, and 2017 to
C++11, C++14, and C++17.
Why Use C++
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!";
return 0;
}
In Dev C++ it looks like this
When click on compile and run it
looks like this
Hello World!
Process returned 0 (0x0) execution time : 0.011 s
Press any key to continue