C语言中预编译#if的使用

c语言 编译 编程技术
发布日期 2023-07-17 更新日期 2023-07-17 阅读次数 75 文章字数 215

#if和#endif是一组同时使用的,叫做条件编译指令

预处理器可以在编译前处理c程序。

#if 标识符
	程序段1
#elif 标识符
	程序段2
#else
	程序段3
#endif

例如在编译前识别环境:

#include <stdio.h>
int main(){
    #if _WIN32
        system("color 0c");
        printf("windows
");
    #elif __linux__
        printf("linux");
    #else
        printf("other");
    #endif
    return 0;
}

文章作者: 朱丰华

文章链接: https://smart.52dixiaowo.com/blog/post-454.html

版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。

c语言 编译

发表评论

相关推荐
朱丰华   |   1年前   |   请求 · 一个

ab测压命令,apache测压工具

172    评论    点赞
朱丰华   |   1年前   |   php · 缓存 · opcache

php 加速、提高并发opcache

198    评论    点赞
朱丰华   |   1年前   |   编译 · linux · 平台

Go 交叉编译 (跨平台编译)

172    评论    点赞
朱丰华   |   1年前   |   php

windows下编写、编译php扩展

157    评论    点赞
朱丰华   |   1年前   |   linux · php

linux下编写、编译php扩展

150    评论    点赞
朱丰华   |   1年前   |   php

php扩展编译nts的方法

85    评论    点赞
朱丰华   |   1年前   |   js · 模块 · nodejs

nodejs引入自定义模块

47    评论    点赞
朱丰华   |   1年前   |   python · linux · www

linux给www用户【非root】安装python3

186    评论    点赞
朱丰华   |   1年前   |   docker · 安装 · linux

centos安装docker

105    评论    点赞
朱丰华   |   1年前   |   php · 编译

ubuntu、centos系统从源码编译指定版本php--超详细

158    评论    点赞
朱丰华   |   1年前   |   php · git · 编译

从源码编译php

135    评论    点赞
朱丰华   |   1年前   |   php · zend · 反射 · api

php zend引擎api接口:ZENDAPI阅读,反射调用示例

123    评论    点赞
朱丰华   |   1年前   |   文件 · c语言 · include

C语言include语法,h文件和c文件的关系

95    评论    点赞
朱丰华   |   1年前   |   php · 引用 · 变量 · c语言

php扩展内存管理与引用计数

127    评论    点赞
朱丰华   |   1年前   |   zend · php · 类型 · zval

php内核zval类型,与基本类型的转换

115    评论    点赞
朱丰华   |   1年前   |   指针 · 地址 · c语言

C语言的&取地址符,指针

126    评论    点赞
朱丰华   |   1年前   |   安装 · clion

windows下安装clion

91    评论    点赞
朱丰华   |   1年前   |   gcc · 安装 · git

windows下安装gcc

96    评论    点赞
朱丰华   |   1年前   |   安装

centos下安装gcc编译器

62    评论    点赞
朱丰华   |   1年前   |   php · api · 扩展 · 执行

php sapi生命周期

86    评论    点赞
{{item.author_name}}   |   {{new Date(item.date*1000).log()}}   |   {{it}} ·

{{item.title}}

{{item.uv}}    评论    点赞