Answers for "turbo c++ easy programs"

C++
0

turbo c++ easy programs

#include<iostream.h>
#include<conio.h>
void main()
{
	clrscr();  // clear the screen
	cout<<"Hello Compiler, I am C++";
	getch();  // holds output screen until user press a key
}
Posted by: Guest on September-22-2020

Browse Popular Code Answers by Language