fork download
  1. #include <stdio.h>
  2. typedef int DATATYPE;
  3. #define PRINT_DATATYPE "%d"
  4.  
  5. int main() {
  6. DATATYPE i = 1;
  7. printf("i = " PRINT_DATATYPE "\n",i);
  8. return 0;
  9. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
i = 1