Tuesday, July 1, 2014

A very simple program for printing a string.

#include<iostream.h>
#include<conio.h>
void main(){
cout<<"Welcome";
getch();
}
Output:-
Welcome

No comments:

Post a Comment