Thursday, 3 September 2015

C PROGRAMING

HELLO WORLD PROGRAM


#include  <stdio.h>
#include  <stdlib.h>


int main(void){

           puts("HELLO WORLD!");   /*print hello world!*/
       
           return EXIT_SUCCES;


}







OUTPUT

HELLO WORLD!

No comments:

Post a Comment