Answer:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int two_d[4][3];
for(int x; x < 4; x++)
{
for(int y; y < 3; y++)
{
srand (time(NULL));
two_d[x][y] = rand();
}
}
}
Step-by-step explanation:
do you need an explanation? Tell me if you do.