practice_code/c/code/hello.world.c

8 lines
74 B
C
Raw Permalink Normal View History

2024-02-18 14:26:41 +08:00
#include<stdio.h>
int main(void)
{
printf("hello,world!");
return 0;
}