Friday, April 22, 2011

Introduction C++

C++ is one of the language that popular today. Refer here. Today I would like to share code for C++.
#include <iostream>
using namespace std;

int main()
{
    cout <<"Welcome to c++\n\n";
    cout <<"This is my first program.";
   
    system ("PAUSE");
    return 0;
}


Your output should be like this.

No comments:

Post a Comment