fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int t[3] = { 3, 2, 1 }, *ptr = t + 1;
  6. (*(ptr + 1))++;
  7. *ptr++;
  8. cout << t[1] << t[2];
  9. return 0;
  10. }
  11.  
  12.  
Success #stdin #stdout 0.01s 5272KB
stdin
Standard input is empty
stdout
22