You are on page 1of 1

/* you generally want to

* include stdio.h and


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

int main (void)


{
printf("Hello World\n");
exit (0) ;
}

You might also like