



|
References C++ Tutorial Site (cplusplus.com) Well-known Applications Written in C++
|
Some MS Applications Written in C++
|
|
Free C++ IDEs Other Free C++ compilers/interpreters Another list of Free C++ Compilers And another, from C++ creator Bjarne Stroustrup Turbo Pascal 5.5 (V7 is not in the public domain)
|
![]() |
Example code, courtesy of Bjarne Stroustrup creator of C++, who recommends this be used as a test of compliance for a compiler
#include<iostream>
#include<string>
using namespace std;
int main()
{
string s;
cout << "Please enter your first name followed by a newline\n";
cin >> s;
cout << "Hello, " << s << '\n';
return 0; // this return statement isn't necessary
}
Last updated: 10/24/2006