71_macro_empty_arg.c 133 B

12345678910
  1. #include <stdio.h>
  2. #define T(a,b,c) a b c
  3. int main(void)
  4. {
  5. printf("%d", T(1,+,2) T(+,,) T(,2,*) T(,7,) T(,,));
  6. return 0;
  7. }