What is the output from the program? cout statement - C++ Language Basics

C++ examples for Language Basics:Console

Description

What is the output from the program? cout statement

Demo Code

#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;
}

Result


Related Tutorials