Simple example For C

Simple example in C
#include <iostream.h>
#include <conio.h>
void main( )
{
clrscr();
cout<<”Hello World \n”;
getch();
}
Output :
Hello World

0 comments: