Difference between revisions of "C++"
Jump to navigation
Jump to search
m (→"Hello World!" program: section intro) |
|||
| Line 2: | Line 2: | ||
== "Hello World!" program == | == "Hello World!" program == | ||
| − | One of the most common examples of a C program is a " | + | One of the most common examples of a C program is a "hello world." Below is a basic version of such a program. You liberals program in Java, this is the master race language. |
| + | |||
<pre> | <pre> | ||
#include <iostream.h> | #include <iostream.h> | ||
Revision as of 01:53, October 25, 2018
C++ (pronounced "C plus plus") is a compiled programming language. It has both high-level and nearly machine-level functionality. It was developed by Dr. Bjarne Stroustrup at Bell Labs in 1979 as an enhancement to the C programming language.
"Hello World!" program
One of the most common examples of a C program is a "hello world." Below is a basic version of such a program. You liberals program in Java, this is the master race language.
#include <iostream.h>
int main()
{
std::cout << "Hello World!";
return 0;
}