1C++ is a cross-platform language that can be used to create high-performance applications.
2
3C++ was developed by Bjarne Stroustrup, as an extension to the C language.
4
5C++ gives programmers a high level of control over system resources and memory.
1C++ is a general-purpose programming language created by Bjarne
2Stroustrup as an extension of the C programming language, or
3"C with Classes".
4
5//as you can also see to your right ---------------------->
6
7C++ still qualifies as a high-level languge, yet the rise of
8languages like Ruby and Java have given capabilities that sway
9people's opinion towards what is and is not "high-level".
10
11Yet high-level simply means it's farther from machine code and closer
12to human-readable form. Hence the need for a compiler/interpreter.
13
14So don't get too worked up about granular specifics.
1#include <iostream>
2
3int main() {
4 std::cout << "Hello, world!" << std::endl;
5 return 0;
6}
1C++ is a general-purpose programming language created by Bjarne Stroustrup as an extension of the C programming language, or "C with Classes".