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

8 lines
74 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#include<stdio.h>
int main()
{
printf("\nHello world!");
return 0;
}