16 Nov 2011

C++ "Hello World" Tutorial 1


C++ is very simple and basic language in computer programming. Simplest program in C++ is

#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
cout is the most powerful statement in c++ Programming

Output:
           Hello World

No comments:

Post a Comment