With that i manuaged to get the last column of my matrix on the screen... (no clue how to generate anything in the middle on the screen alone), but how on earth can i get the programm to sum up all the numbers from that column now?


printf("Last column\n");

for(i=0; i<RIDU; i++)
{
for(j=0; j<VEERGE; j++)
{
if (j>5) printf("%4d", maatriks[i][j]);
}
printf("\n");
}