编写一个C程序运行时输出 Hello World!
时间:2020-07-22 13:55:49
收藏:0
阅读:165
编写一个C程序,运行时输出Hello World!
这个程序是一些国外C教材中作为第一个程序例子介绍的,一般称为Hello程序。
代码示例:
#include <stdio.h>
int main()
{
printf("%s\n", "Hello World!");
return 0;
}
运行截图:
原文:https://www.cnblogs.com/weiyidedaan/p/13359681.html
评论(0)