宏定义#define的用法
Posted 信
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了宏定义#define的用法相关的知识,希望对你有一定的参考价值。
预处理#define定义函数
#include <stdio.h> #define Connect(x,y) x##y //"##"表示连接x与y int main(void) { int n = Connect(123,456); printf("n=%d\n",n); return 0; }
以上是关于宏定义#define的用法的主要内容,如果未能解决你的问题,请参考以下文章