C/C++:创建第一个程序helloworld!

#include <stdio.h>

int main()
{
    printf("hello world!
");

    getchar();
    return 0;
}

Caesar卢尚宇
2020年10月26日

原文地址:https://www.cnblogs.com/nxopen2018/p/13881869.html