fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define printf cout
  5. #define if while
  6. #define void int
  7. #define delete(x) x++
  8.  
  9. int main() {
  10. void i=0;
  11. if(i<5){
  12. printf << i << endl;
  13. delete(i);
  14. }
  15. return 0;
  16. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
0
1
2
3
4