fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int ia[2][4]={{2,3,5,7},{11,13,17,19}};
  6. for(auto i:ia[1])
  7. cout<<i<<' ';
  8. }
  9.  
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
11 13 17 19