Sunday, February 17, 2013

Write your First Program in C++

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

No comments:

Post a Comment