一、helloworld代码在不同IDE中的区别
vs2017:
#include <stdio.h>
int main()
{
printf("hello world\n");
system("pause");
return 0;
}
Devcpp:
#include <stdio.h>
int main()
{
printf("hello world\n");
return 0;
}
二、操作步骤:
vs2017
1、文件-新建-项目
2、选“visual C++”-“空项目”
3、解决方案资源管理器中右键源文件-添加-新建项-C++文件
4、保存选择.c后缀
Devcpp
1、文件-新建-源代码
2、保存选择.c后缀
三、程序运行
vs2017
1、调试-开始调试-开始执行
devcpp
1、运行-编译-运行
//本博客为记录个人学习历程用
原文地址:http://blog.51cto.com/13640616/2085352
时间: 2024-10-18 18:54:17