HelloWorld

程序员的第一篇博客文章,当然是 Hello, world! 啦~

1
2
3
4
5
6
7
#include <stdio.h>

int main()
{
printf("Hello, world!");
return 0;
}