-2
I’m trying to solve this problem.
#include <stdio.h>
/*
5. Faça uma função que receba uma matriz A(10,10) e retorna um vetor com a soma de cada uma das linhas de A.
*/
int matriz[3][3];
void soma() {
int i, j;
int soma[3];
for(i=0;i<3;i++){
for(j=0;j<3;j++){
soma[i] = soma[i] + matriz[i][j];
}
}
for(i=0;i<3;i++){
printf("\nResultado da soma da linha %d: %d", i+1, soma[i]);
}
}
int main() {
int i, j;
for(i=0;i<3;i++){
for(j=0;j<3;j++){
printf("Digite o valor da posicao %d %d: ", i+1, j+1);
scanf("%d", &matriz[i][j]);
}
}
soma();
}
Don’t just include your problem code. What error are you getting? What did you expect to get? What have you tried? We can’t read your mind!
– hugomg