Changes

Jump to navigation Jump to search
108 bytes added ,  23:49, October 8, 2008
Removed category where sub-category exists, added sample code
Line 1: Line 1: −
'''C++''' (pronounced as "C" with "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.
+
'''C++''' (pronounced "C plus plus") is a powerful but cryptic [[Programming Language|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.
[[category:Computer Science]]
+
 
 +
== "Hello World!" program ==
 +
<pre>
 +
#include <iostream.h>
 +
 
 +
int main()
 +
{
 +
    cout << "Hello World!";
 +
    return 0;
 +
}
 +
</pre>
 
[[category:Programming Languages]]
 
[[category:Programming Languages]]
142

edits

Navigation menu