fork download
  1. #include <stdio.h>
  2.  
  3. #define def(x, type) type x, *p##x = &x;
  4.  
  5. int main(void) {
  6. def(a, int);
  7. *pa = 10;
  8. printf("%d\n", a);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5472KB
stdin
Standard input is empty
stdout
10