Thursday, October 22, 2009

First program in C

  • The C program is a set of functions.

  • The program execution begins by executing the function main ()
  • You must write #include Statement before running Program
  • Stdio.h --> Header File which contain all Standerd i/o library Functions

#include"stdio.h"

void main()
{
printf("Hellow");
}