From charlesreid1

(Created page with "= C++ = <syntaxhighlight lang="c++"> #include <iostream> int main() { std::cout << "Hello, world! This is C++.\n"; } </syntaxhighlight>")
 
No edit summary
Line 1: Line 1:
= C++ =
= C++ =


<syntaxhighlight lang="c++">
<syntaxhighlight lang="cpp">
#include <iostream>
#include <iostream>
   
   

Revision as of 06:44, 5 October 2010

C++

#include <iostream>
 
int main()
{
     std::cout << "Hello, world! This is C++.\n";
}