fork download
  1. #include <stdio.h>
  2. #define Type(typename) typeof(typename)
  3. #define Pointer(T) typeof(T *)
  4.  
  5.  
  6. int main(void) {
  7.  
  8. Type(int) x = 1;
  9. Pointer(int) p = &x;
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2004KB
stdin
Standard input is empty
stdout
Standard output is empty