欢迎来到我的博客

欢迎来到我的博客,这里记录了我的学习、生活、思考和感悟。
从HELLO WORLD开始吧!
据说第一个程序就是hello world,我也不例外。

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

int main() {
printf("Hello World\n");
return 0;
}