Welcome..!!

Please visit http://csprograms.in/ for more Computer Science programs.

Tuesday 13 March 2012

1. C++ program to display a message.

The very first program is the simplest one in any programming language.
It goes..


#include <iostream>
int main()
{
cout << “ Welcome to Shad’s blog “ << endl;

return 0;
}

No comments:

Post a Comment