Glad to help man

. C++ is my main language because of game design/programming so feel free to ask anything.
Here's your code properly indented and formatted:
Code:
#include <iostream>
using namespace std;
int main()
{
int i;
int t;
int 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;
}
Also I wouldn't suggest using iostream and cout until you learn what namespaces are and how they work. Practicing with printf first helps a ton as it's a pretty powerful function.