13. Give the output generated by the following set of statements (10 points) (Show
works to receive full credit)
int main (void)
{
int col_3 = 1, k;
int x [][5] = {{1,2,3,4,5}, {1,2,3,4,5}, {5,4,3,2,1}, {5,4,3,2,1}};
for (k=3; k>= 0; k=k-1)
{
col_3 += x[k][3];
}
printf("SUM OF COLUM_3 = %i \n",col_3);
return (0);
}
0
1
2
0
1
2
3
1
2
3
k<=3
1
2
3