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

9 lines
106 B
C
Raw Permalink Normal View History

2024-11-04 20:28:54 -08:00
#include <stdlib.h>
#include <stdio.h>
2023-07-01 11:58:00 -04:00
2024-11-04 20:28:54 -08:00
int main(void)
2023-07-01 11:58:00 -04:00
{
2024-11-04 20:28:54 -08:00
puts("Hello world!");
return EXIT_SUCCESS;
2023-07-01 11:58:00 -04:00
}