fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define TRACE(...)
  5. #define FUBAR(...) ((void)0)
  6. int main() {
  7. int a = 10, b = 20;
  8. int c = 30;
  9. TRACE(a, b);
  10. FUBAR(c);
  11. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
Standard output is empty