References

C++ Tutorial Site (cplusplus.com)

MSDN C++ Site (Microsoft)

Well-known Applications Written in C++

 

Some MS Applications Written in C++
  • Windows XP
  • Windows NT (NT4 and 2000)
  • Windows 9x (95, 98, Me)
  • Microsoft Office (Word, Excel, Access, PowerPoint, Outlook)
  • Internet Explorer (including Outlook Express)
  • Visual Studio (Visual C++, Visual Basic, Visual FoxPro) 
  • Exchange Server
  • SQL Server

 

Free C++ IDEs

Bloodshed-Dec C++

Borland Turbo C++ 1.01

MSDN Visual C++ Express 2005

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
}

Back to myndrs.com


Last updated: 10/24/2006