Code Snippets C

#include
#define min(x, y) ((xint main() {
int x,y,j;
x = 1;
y = 2;
j = min ( x, y);
printf ( "x: %d, y: %d, j: %d\n", x, y, j );
}