01. 第一个C语言程序

创建日期:2024-07-10
更新日期:2025-02-01

hello.c

#include <stdio.h>

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