C++

From Conservapedia
This is an old revision of this page, as edited by JimP (talk | contribs) at 01:39, October 12, 2008. It may differ significantly from current revision.
Jump to navigation Jump to search

C++ (pronounced "C plus plus") is a powerful but cryptic 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

#include <iostream.h>

int main()
{
    cout << "Hello World!";
    return 0;
}