宏替换是一种提供字符串替换的机制。可以通过#deifne来实现。
在程序执行之前,它用于用宏定义的第二部分替换第一部分。
第一对象可以是函数类型或对象。
宏的语法如下-
#define first_part second_part
在程序中,每次出现时,在整个代码中,first_part都将被second_part替换。
#include<stdio.h> #define sqrt(a) a*a int main(){ int b,c; printf("输入b元素:"); scanf("%d",&b); c=sqrt(b);//在执行程序之前替换c = b * b printf("%d",c); return 0; }输出结果
您将看到以下输出-
输入b元素:4 16
考虑另一个解释宏功能的程序。
#include<stdio.h> #define equation (a*b)+c int main(){ int a,b,c,d; printf("enter a,b,c elements:"); scanf("%d %d %d",&a,&b,&c); d=equation;//在执行程序之前替换d =(a * b)+ c printf("%d",d); return 0; }输出结果
您将看到以下输出-
enter a,b,c elements: 4 7 9 37