Hello World!


作为网页搭建的第一个文章,那么也会写一个hello world程序, 毕竟这是常规操作。

C语言


#include
int main()
{
    printf("hello world!");
    return 0;
}