fork download
  1. #include <iostream>
  2. #include <cstdio>
  3.  
  4. #define OTConsolePrint(STR, ...) printf(STR, __VA_ARGS__)
  5.  
  6. int main() {
  7. OTConsolePrint("Null pointer at \nLine: %d\nFile: %s\n", __LINE__, __FILE__);
  8. return 0;
  9. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
Null pointer at 
Line: 7
File: prog.cpp