C++ examples for Language Basics:Console
Output message to console window
#include <iostream> using namespace std; int main()//from www .ja v a 2s . c om { cout << "Hello\tI am your computer talking." << endl; return 0; }