作为网页搭建的第一个文章,那么也会写一个hello world程序, 毕竟这是常规操作。
#include int main() { printf("hello world!"); return 0; }
admin_dfh