C++ examples for Language Basics:Console
What is the output from the program? cout statement
#include <iostream> using namespace std; int main()/*from ww w . ja v a 2 s.c o m*/ { cout << "Computers, computers everywhere"; cout << "\n as far as I can C"; return 0; }