RosettaCodeData/Task/Hello-world-Text/C/hello-world-text-1.c

9 lines
110 B
C
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
2015-11-18 06:14:39 +00:00
printf("Hello world!\n");
2013-04-10 21:29:02 -07:00
return EXIT_SUCCESS;
}