hello word 首先,这是我的第一篇文章,理所当然的要写一些值得纪念的东西。学习编程语言的第一课:hello word. #include <stdio.h> #include <stdlib.h> int main() { printf("Hello world!\n"); return 0; }