Linux/Code/hello.c

8 lines
79 B
C
Raw Normal View History

2025-04-28 16:58:56 +08:00
#include <stdio.h>
int main()
{
printf("hello world\n");
return 0;
}