Friday, 12 June 2015

Printing in C

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.
 }



Video Explanation
Sorry Guys Explanation of this tutorial will be posted later this month.


No comments:

Post a Comment