C 编程环境搭建 Window 篇
前言 - 简介
我们在写代码的过程中, 不可避免的重度依赖所处的开发环境. 本文重点带大家在 Window 搭建 C
简单控制台项目. 当作存档, 用于记录项目搭建各种重复操作. 在详细过程之前, 我们约定下基础环境
Best new version Window
Best new version Visual Studio
例如笔者当前是 Windows 10 + Visual Studio 2019, 其中 Windows 推荐开启 UTF-8 支持.
那此间, 骚年去唤醒自己的道 ~
正文 - 过程
正文分三个过程. 其一是 Visual Studio C Consule 常用设置. 其二是导出模板, 来解放生产力. 其三演示使用.
Visual Studio C Consule 常用设置
1. 创建 c_template 项目
2. 只保留 x64 环境
人的精气有限, 做钉子更省力.
3. 添加基础 main.c
4. Visual Studio 项目详细配置
导出模板
上面这些每次操作都添加, 很恶心. 我们可以通过 [项目] -> [导出模板] 一劳永逸. ~
1. 前戏
找到 c_template.vcxproj 项目文件, 通过你的慧眼, 将其中所有关于 Win32 相关的 xml 配置删除.
2. 导出模板
[项目] -> [导出模板]
添加额外补充
(图片什么的可以因自己喜好自己整)
演示使用
最终生成如下模板内容
不妨既兴通过这个模板演示一段代码
#include <stdio.h>
#include <float.h>
#include <errno.h>
#include <assert.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h> /*
题目:
地上右一个 m 行 n 列的方格.
一个机器人从坐标(0, 0) 的格子开始移动, 它每次可以向左, 右, 上, 下移动一格,
但不能进入行坐标和列坐标的数位之和大于 k 的格子. 例如, 当 k 为 18 的时候,
机器人能够进入方格 (35, 37), 因为 3 + 5 + 3 + 7 = 18.
但它不能进入方格 (35, 38), 因为 3 + 5 + 3 + 9 = 19.
请问该机器人能够到达多少个格子?
*/ extern int moving_count(int m, int n, int threshold); int main(int argc, char * argv[]) {
int m = , n = , threshold = ;
int count = moving_count(m, n, threshold);
printf("<m = %d, n = %d, threshold = %d> -> %d\n", m, n, threshold, count);
return ;
} struct visite {
int rows;
int cols;
int threshold;
bool visited[];
}; inline struct visite * visite_create(int rows, int cols, int threshold) {
struct visite * v = malloc(sizeof(struct visite) + (rows * cols) * sizeof (int));
assert(v && rows > && cols > && threshold > );
v->rows = rows;
v->cols = cols;
v->threshold = threshold;
memset(v->visited, , (rows * cols) * sizeof (int));
return v;
} inline void visite_delete(struct visite * v) {
if (v) free(v);
} static inline int get_digit_sum(int num) {
int sum = ;
while (num > ) {
sum = num % ;
num /= ;
}
return sum;
} inline bool visite_check(struct visite * v, int row, int col) {
if (row >= && row < v->rows && col >= && col < v->cols && !v->visited[row * v->cols + col]) {
return get_digit_sum(row) + get_digit_sum(col) <= v->threshold;
}
return false;
} int visite_moving(struct visite * v, int row, int col) {
if (!visite_check(v, row, col))
return ; v->visited[row * v->cols + col] = true;
return + visite_moving(v, row, col - )
+ visite_moving(v, row, col + )
+ visite_moving(v, row - , col)
+ visite_moving(v, row + , col);
} int
moving_count(int m, int n, int threshold) {
if (m < || n < || threshold < )
return ;
if (threshold == )
return ; struct visite * v = visite_create(m, n, threshold); int count = visite_moving(v, , ); visite_delete(v); return count;
}
(有心的道友, 也可以转成栈回溯. )
后记 - 展望
错误是难免的, 欢迎朋友指正互相印证苦中作乐.
立秋 - 刘翰 - 南宋
乳鸦啼散玉屏空,一枕新凉一扇风。
睡起秋声无觅处,满阶梧桐月明中。
C 编程环境搭建 Window 篇的更多相关文章
- Qt在Windows下的三种编程环境搭建
尊重作者,支持原创,如需转载,请附上原地址:http://blog.csdn.net/libaineu2004/article/details/17363165 从QT官网可以得知其支持的平台.编译器 ...
- Qt4.8在Windows下的三种编程环境搭建
Qt4.8在Windows下的三种编程环境搭建 Qt的版本是按照不同的图形系统来划分的,目前分为四个版本:Win32版,适用于Windows平台:X11版,适合于使用了X系统的各种Linux和Unix ...
- 手把手制作一个简单的IDEA插件(环境搭建Demo篇)
新建IDEA插件File --> new --> Project--> Intellij PlatForm Plugin-->Next-->填好项目名OK 编写插件新建工 ...
- ArduinoYun教程之Arduino编程环境搭建
ArduinoYun教程之Arduino编程环境搭建 Arduino编程环境搭建 通常,我们所说的Arduino一般是指我们可以实实在在看到的一块开发板,他可以是Arduino UNO.Arduino ...
- Qt在Windows下的三种编程环境搭建(图文并茂,非常清楚)good
尊重作者,支持原创,如需转载,请附上原地址:http://blog.csdn.net/libaineu2004/article/details/17363165 从QT官网可以得知其支持的平台.编译器 ...
- 【Qt开发】Qt在Windows下的三种编程环境搭建
从QT官网可以得知其支持的平台.编译器和调试器的信息如图所示: http://qt-project.org/doc/qtcreator-3.0/creator-debugger-engines.htm ...
- C++调用Lua编程环境搭建及测试代码示例
C++调用Lua编程环境搭建及测试代码示例 摘要:测试环境是VS2005+LuaForWindows_v5.1.4-45.exe+WIN7 1.安装lua开发环境LuaForWindows_v5.1. ...
- Unix NetWork Programming(unix环境编程)——环境搭建(解决unp.h等源码编译问题)
此配置实例亲测成功,共勉,有问题大家留言. 环境:VMware 10 + unbuntu 14.04 为了unix进行网络编程,编程第一个unix程序时遇到的问题,不能包含unp.h文件,这个感觉和a ...
- Qt在Mac OS X下的编程环境搭建
尊重作者,支持原创,如需转载,请附上原地址:http://blog.csdn.net/libaineu2004/article/details/46234079 在Mac OS X下使用Qt开发,需要 ...
随机推荐
- 移动4G插卡注网
本文根据插入移动4G单卡到注册4G网络过程的mtklog分析. 插卡动作: 从以上信息无法区分单卡还是双卡,通过ATR参数判断: 注网流程,此过程未开启4G数据连接: [MS->NW] ESM_ ...
- Kubernetes学习之pause容器
根据代码看到,pause容器运行着一个非常简单的进程,它不执行任何功能,一启动就永远把自己阻塞住了, 它的作用就是扮演PID1的角色,并在子进程称为"孤儿进程"的时候,通过调用wa ...
- Python之request模块-基础用法
Request模块参考中文手册:https://requests.readthedocs.io/zh_CN/latest/ Request模块 1.查看pip已装包(模块)的安装信息(模块的路径.版本 ...
- docker gitlab-runner的安装
参考: Run GitLab Runner in a container 前面介绍了gitlab-ce的安装,下面是gitlab-runner的安装,同样还是安装docker版本. 1.下载 dock ...
- 五、Xpath与lxml类库
什么是XML XML 指可扩展标记语言(EXtensible Markup Language) XML 是一种标记语言,很类似 HTML XML 的设计宗旨是传输数据,而非显示数据 XML 的标签需要 ...
- 二、urllib库的使用详解
一.urllib2库的基本使用 所谓网页抓取,就是把URL地址中指定的网络资源从网络流中读取出来,保存到本地. 在Python中有很多库可以用来抓取网页,我们先学习urllib2. urllib2 是 ...
- 【Appium】Android 按键码
keycode也是appium很强大的功能,鉴于官网不翻墙无法打开,特此备忘. 电话键 KEYCODE_CALL 拨号键 5 KEYCODE_ENDCALL 挂机键 6 KEYCODE_HOM ...
- Game Engine Architecture 13
[Game Engine Architecture 13] 1.describe an arbitrary signal x[n] as a linear combination of unit im ...
- [转]【jsp】
建立时间:6.30 &7.12& 7.24& 7.27 7月心比较浮躁,几乎没怎么学习编程 一.JSP技术 1.jsp脚本和注释 jsp脚本: 1)<%java代码%&g ...
- AjAX 异步通信
<!DOCTYPE html> <html lang="en"> <head> <title>xmlhttprequest ajax ...