博客
关于我
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/

你可能感兴趣的文章
nmap指纹识别要点以及又快又准之方法
查看>>
Nmap渗透测试指南之指纹识别与探测、伺机而动
查看>>
Nmap端口扫描工具Windows安装和命令大全(非常详细)零基础入门到精通,收藏这篇就够了
查看>>
NMAP网络扫描工具的安装与使用
查看>>
NMF(非负矩阵分解)
查看>>
nmon_x86_64_centos7工具如何使用
查看>>
NN&DL4.1 Deep L-layer neural network简介
查看>>
NN&DL4.3 Getting your matrix dimensions right
查看>>
NN&DL4.7 Parameters vs Hyperparameters
查看>>
NN&DL4.8 What does this have to do with the brain?
查看>>
nnU-Net 终极指南
查看>>
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
查看>>