Use macro to find the minor variable : Macro Function « Macro Preprocessor « C / ANSI-C






Use macro to find the minor variable


#include <stdio.h>

#define min(a, b) ((a<b) ? a : b )

int main() { 
   int a,b,c;

   a = 1;
   b = 2;
   c = min ( a, b); 
   printf ( "a: %d, b: %d, c: %d\n", a, b, c );

}


           
       








Related examples in the same category

1.Defining a macro to compare two valuesDefining a macro to compare two values
2.Defining a macro to output the value of an expressionDefining a macro to output the value of an expression
3.Generate a square tableGenerate a square table
4.Define small function in macro
5.Make string
6.Use marco for small function
7.Define Macro as simple function
8.Use Macro to check the int range
9.Use Macro to get the bigger int value