Pessoal, estou tentando criar uma função em C que imprima um vetor com M elementos por linha, ou seja, se eu digitar por exemplo 5, deve ser exibido na tela 5 vetores por linha. Mas não estou sabendo como fazer isso, alguém me ajuda?
Segue o código:
#include<stdio.h>
#include<time.h>
#define tam 100
void atribuir_valor(int t, int vet[], int N)
{
srand(time(0));
int i;
for(i=0; i<t; i++)
vet = rand() % N + 1;
}
void exibe_vetor(int t, int vet[], int M)
{
int i;
for(i=0; i<t; i++)
printf("Vet[%d] = %d\t", i, vet);
}
int main()
{
int v[tam], n, m;
printf("Informe o limite N:\n");
scanf("%d", &n);
atribuir_valor(tam, v, n);
printf("Informe a quantidade de elementos por linha \'M\'\n");
scanf("%d", &m);
printf("O vetor e: \n");
exibe_vetor(tam, v, m);
}
Obrigado!