//P-1: cout object of ostream class - istream.h header file
// << - insertion operator or put to opertator
#include <iostream.h>
#include <conio.h>
void main()
{
clrscr();
cout << "Welcome to CPP Programming";
getch();
}
//P-1: cout object of ostream class - istream.h header file
// << - insertion operator or put to opertator
#include <iostream.h>
#include <conio.h>
void main()
{
clrscr();
cout << "Welcome to CPP Programming";
getch();
}
Comments
Post a Comment