9 lines
158 B
C
9 lines
158 B
C
#include <stdio.h>
|
|
#define MAX(x, y) ((x) > (y) ? (x) : (y))
|
|
|
|
int main(int argc, char *argv[]) {
|
|
int j, k;
|
|
j = 10;
|
|
k = 20;
|
|
printf("%d", MAX(j, k));
|
|
}
|