博客
关于我
C语言入门-mingw64链接codeblocks
阅读量:431 次
发布时间:2019-03-06

本文共 469 字,大约阅读时间需要 1 分钟。

大家好,本章来配置一下ide。

首先打开cb,设置-编译器

在弹出来的窗口中点击可执行的工具链

点击自动侦测,如果没有侦测到那就点击...的标志,选择路径

选择后一般就可以了,cb默认使用32位编译器编译,因此编译出来的程序是32位,也可以换成64位,不过没有什么区别,那就不更改,有需求可向我提出

那么这样就配置好了

接下来我们写个程序试试水

创建项目

然后选择这个空项目(empty project)

点击前进,然后点击下一步,选择工程的路径名称

点击完成,然后新建文件

点击c/c++source,点击前进,点击两个下一步(c语言或c++自选,默认c++也可)

点击那个全部后点击...输入名称后默认保存到工程,点击保存然后点击完成即可写代码

输入

#include <stdio.h>

#include <stdlib.h>
int main()
{
printf("helloworld\n");
system("pause");
return 0;
}

然后点击键盘上的f9,

出现这样就成功了。

OK那么本期到这里就结束了。

转载地址:http://bdnuz.baihongyu.com/

你可能感兴趣的文章
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
NO 157 去掉禅道访问地址中的zentao
查看>>
no available service ‘default‘ found, please make sure registry config corre seata
查看>>
No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
查看>>
no connection could be made because the target machine actively refused it.问题解决
查看>>
No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
查看>>
No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
查看>>
No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc
查看>>
No mapping found for HTTP request with URI [/...] in DispatcherServlet with name ...的解决方法
查看>>
No mapping found for HTTP request with URI [/logout.do] in DispatcherServlet with name 'springmvc'
查看>>
No module named 'crispy_forms'等使用pycharm开发
查看>>
No module named 'pandads'
查看>>
No module named cv2
查看>>
No module named tensorboard.main在安装tensorboardX的时候遇到的问题
查看>>
No module named ‘MySQLdb‘错误解决No module named ‘MySQLdb‘错误解决
查看>>
No new migrations found. Your system is up-to-date.
查看>>
No qualifying bean of type XXX found for dependency XXX.
查看>>
No qualifying bean of type ‘com.netflix.discovery.AbstractDiscoveryClientOptionalArgs<?>‘ available
查看>>
No resource identifier found for attribute 'srcCompat' in package的解决办法
查看>>