fork(30) download
  1. #include <stdio.h>
  2.  
  3. #define PRINT(var,format) printf(#var" is %"#format"\n",var)
  4.  
  5. int main(void) {
  6. int xyz = 123;
  7. PRINT(xyz, d);
  8. return 0;
  9. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
xyz is 123