c语言代码实现一个helloworld
程序员文章站
2022-06-26 10:26:52
开发工具:Dev-C++
代码如下:
#include
#include
main(){
pr...
开发工具:Dev-C++
代码如下:
#include <stdio.h>
#include<stdlib.h>
main(){
printf("hello world\n");
system("pause");//暂停执行
}
先保存,保存为一个.c文件,然后点击编译按钮,会生成一个exe程序,运行会在CMD控制台输出helloworld。