Array C++ Tutorial

#include  
using namespace std; 
 
int main() 

  int t,i, nums[3][4]; 
 
  for(t=0; t < 3; ++t) { 
    for(i=0; i < 4; ++i) { 
      nums[t][i] = (t*4)+i+1; 
      cout << nums[t][i] << ' '; 
    } 
    cout << '\n'; 
  } 
 
  return 0; 
}
1 2 3 4
5 6 7 8
9 10 11 12