fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define at +
  5. int main() {
  6. const int x = 3;
  7. int array[6] = {1, 2, 3, 4, 5, 6};
  8. cout << *(array at x) at x;
  9. return 0;
  10. }
Success #stdin #stdout 0s 3344KB
stdin
Standard input is empty
stdout
7