Install Turbo C/C++ 16-bit compiler. Then create new noname00.c
file.
Write this code in it.
//Include necessary files stdio.h and conio.h for function prototypes.
//The "int agrc , char *argv[]" are optional parameters to main program.If you don't want to use //it you can just write "int main()"
int main(int argc,char *argv[])
{
printf("Hello World !!!!");
getch();
return 0;
}
the .exe file generated by this compiler can be found in source directory.
Try to run it in your own MS-DOS Box.
It should run.