Computer Science, asked by malaiaji, 1 year ago

Main()
{
int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ;
int i, j , k=99 ;
for(i=0;i<3;i++)
for(j=0;j<4;j++)
if(a[i][j] < k)
k = a[i][j];
printf("%d", k);
}


malaiaji: give me proper explanation ..

Answers

Answered by evaebey211
0
Answer = 1
because value of k = 1 after first loop execution. so, it next all the values are greater than k and will not print any thing after that.

malaiaji: i already see that answer but i cant understand pls explain pa
Similar questions