Macro Preprocessor C

#include 
inline int max(int a, int b)
{
  return a > b ? a : b;
}
int main(void)
{
  int x = 5, y = 10;
  printf("Max of %d and %d is: %d\n", x, y, max(x, y));
  return 0;
}