To print message on the screen.
#include <stdio.h>
#include <conio.h>
void main()
{ clrscr(); //For Clearing the Screen.
printf("Hello world\n"); //For printing
getch(); //Getting a chracter or waiting for key press.
No comments:
Post a Comment