Back To C++ Basic Index
// program to display hello world on the output screen #include
#include
void main() { clrscr(); cout<<"Hello World"; getch(); }