#definesquare(a)a*aintmain(){intb,c;printf(""/> #definesquare(a)a*aintmain(){intb,c;printf("">
매크로 교체는 문자열 교체를 제공하는 메커니즘입니다. "#define"으로 달성할 수 있습니다.
프로그램이 실행되기 전에 매크로 정의의 첫 번째 부분을 두 번째 부분으로 바꾸는 데 사용됩니다.
첫 번째 객체는 함수 유형이거나 객체일 수 있습니다.
매크로의 구문은 다음과 같습니다:
#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
위 내용은 C 프로그래밍 언어의 매크로란 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!