Pages

Write a program to print hello world on screen in c language

Monday 22 April 2013

#include <stdio.h> // header file whicj contain printf(); funcion.

#include <conio.h> // header file which contain getch() funcion
int main() // start body of program.
{
       printf("Hello World! This is my first program in C.");  //prompt
       getch(); //function which is mostly use to hold screen while you typing a charachtar on screen
}

 

Search Box

Most Reading

Contact Form

Name

Email *

Message *