C | Macro & Preprocessor | Question 6

Last Updated :
Discuss
Comments
C
#include <stdio.h>
#define square(x) x*x
int main()
{
  int x;
  x = 36/square(6);
  printf("%d", x);
  return 0;
}
1
36
0
Compiler Error
Tags:
Share your thoughts in the comments