cstart/Lectures/Lecture2/Codes/6-macro.c

10 lines
96 B
C

#include <stdio.h>
#define MAX 1000
int main(void) {
printf("MAX: %d", MAX);
return 0;
}