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

9 lines
110 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
printf("Hello world!\n");
return EXIT_SUCCESS;
2023-07-01 11:58:00 -04:00
}