macro函数_定义类似Macro的函数,该函数应在C |中使用printf。 C预处理程序

macro函数

We can use printf() function in a Macro. In this example, we are creating a function like Macro that will print the result of a calculation, like adding two numbers.

我们可以在宏中使用printf()函数。 在此示例中,我们将创建一个类似于Macro函数 ,该函数将打印计算结果 ,例如将两个数字相加。

Macro definition:

宏定义:

 #define SUM(a,b) (printf("SUM of %d and %d is = %d\n", a, b, a+b))

Example:

例:

#include <stdio.h>

#define	SUM(a,b)	(printf("SUM of %d and %d is = %d\n", a, b, a+b))

//Main code
int main(){
	
	//adding 10 and 20
	SUM(10,20);
	//adfing 100 and 200
	SUM(100,200);
	
	return 0;	
}

Output

输出量

    SUM of 10 and 20 is = 30
    SUM of 100 and 200 is = 300

翻译自: https://www.includehelp.com/c-programs/define-a-function-like-macro-that-should-use-printf-in-c.aspx

macro函数

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值