码迷,mamicode.com
首页 > 其他好文 > 详细

关于宏和逗号表达式

时间:2015-03-17 00:23:47      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

宏是C编译系统的预处理,何谓“预”?即是正式工作开始之前的准备工作。所以宏替换是在对程序编译之前进行的~也就是直接将宏定义的字符,转换成后面的表达式。

逗号表达式:逗号运算符,优先级别最低,它将两式联接起来,可连续执行

代码:直接对文件输出1-1000的数字

#include <stdio.h>
#define B P,P,P,P,P,P,P,P,P,P
#define P L,L,L,L,L,L,L,L,L,L
#define L I,I,I,I,I,I,I,I,I,I,N
#define I fprintf(f,"%3d\n",i++)
#define N fprintf(f,"\n")

int main(){
    FILE* f=fopen("/home/wuzengxiong/out.txt","w");
    int i=1;
    B;
    return 0;
}

 



关于宏和逗号表达式

标签:

原文地址:http://www.cnblogs.com/fightformylife/p/4343168.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!