Posts by Fellipe Callegas • 1 point
1 post
-
-2
votes1
answer927
viewsQ: Make a function that receives a matrix A(10,10) and returns a vector with the sum of each of the lines of A
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…