fork(16) download
  1. #include <stdio.h>
  2.  
  3. #define PRINT(var,format) printf("variable 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 1676KB
stdin
Standard input is empty
stdout
variable is 0.000000ormat