Write a simple program that prints a string on the screen.
#include<iostream.h>
#include<conio.h>
main ()
{
cout << "Welcome to C++ lab Exercise";
getch();
return (0);
}
OUTPUT:
Welcome to c++ lab Exercise
#include<iostream.h>
#include<conio.h>
main ()
{
cout << "Welcome to C++ lab Exercise";
getch();
return (0);
}
OUTPUT:
Welcome to c++ lab Exercise
No comments:
Post a Comment