fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. #define SMTH 42
  6.  
  7. int main()
  8. {
  9. for (unsigned q = 0; q < 3; ++q)
  10. {
  11. cout << SMTH << ' ';
  12. #define SMTH 7
  13. cout << SMTH << endl;
  14. }
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
42 7
42 7
42 7