C语言打印 hello world
更新:HHH   时间:2023-1-7


//打印 hello world
//标准的输入输出
#include <stdio.h>
int main(int argc, const char * argv[]) {
    //printf 函数
    printf("hello world!\n");
    return 0;
}


返回开发技术教程...