fork download
  1. #include <iostream>
  2.  
  3. int b = 10;
  4. #define foo ((b) + 1)
  5.  
  6. int main() {
  7. int b = 5;
  8. std::cout << foo << "\n";
  9. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
6