Macro Preprocessor C

#include 
#define MAX 100
int main(void)
{
  int i;
  for( i = 0; i < MAX; i++) 
      printf("%d ", i);
  return 0;
}