fork download
  1. #include <iostream>
  2. #include <stdio.h>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.  
  8. int A[] = {1337, 123213, 13321323, 13232123};
  9. for (int i = 0; i <4; ++i){
  10. cout << *(A+i) << endl;
  11. }
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
1337
123213
13321323
13232123