#include <stdio.h>
#include <stdlib.h>
int** matriz;
int linhas = 5;
int colunas = 10;
int main()
{
matriz = malloc(sizeof(int*) * linhas);
for(int i = 0; i < linhas; i++)
{
matriz[i] = malloc(sizeof(int) * (colunas+1));
}
int soma = 0;
for(int i = 0; i < linhas; i++)
{
for(int j = 0; j < colunas; j++)
{
soma++;
matriz[i][j] = soma;
}
}
for(int i = 0; i < linhas; i++)
{
for(int j = 0; j < colunas; j++)
{
printf(" %d", matriz[i][j]);
}
printf("\n");
}
}