Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Calculs in a Matrix

0 votes
asked Oct 11, 2018 by David Iulian (120 points)
i need help with a matrix that goeske this

 i need calculate the total of the numbers of a line.. i just dont know how to do that..

1 Answer

0 votes
answered Oct 12, 2018 by Mariana Mh (140 points)
you can use the cycle "for" to add the numbers of the line

example:

for (i=0; i<2; i++)
  {
  suma=suma+vector1[i];
  }
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...