Showing posts with label Introduction. Show all posts
Showing posts with label Introduction. Show all posts

Sunday, February 17, 2013

Write your First Program in C++

#include <iostream>
using namespace std;
int main()
{
    cout<<"Hello world"<<endl;
    return 0;
}