Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C 프로그래밍 언어의 매크로란?

<시간/>

매크로 대체는 문자열 대체를 제공하는 메커니즘입니다. "을(를) 통해 달성할 수 있습니다. #deifne" .

프로그램 실행 전에 매크로 정의의 첫 번째 부분을 두 번째 부분으로 대체하는 데 사용됩니다.

첫 번째 개체는 함수 유형 또는 개체일 수 있습니다.

구문

매크로 구문은 다음과 같습니다 -

#define first_part second_part

프로그램

프로그램에서 first_part가 나타날 때마다 코드 전체에서 second_part로 바뀝니다.

#include<stdio.h>
#define square(a) a*a
int main(){
int b,c;
printf("enter b element:");
scanf("%d",&b);
c=square(b);//replaces c=b*b before execution of program
printf("%d",c);
return 0;
}

출력

다음 출력이 표시됩니다 -

enter b element: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;//replaces d=(a*b)+c before execution of program
   printf("%d",d);
   return 0;
}

출력

다음 출력이 표시됩니다 -

enter a,b,c elements: 4 7 9
37