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);
}

Answer Posted / s

20

Is This Answer Correct ?    0 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In C programming, how do you insert quote characters (‘ and “) into the output screen?

895


How to Throw some light on the splay trees?

621


Is array name a pointer?

605


the question is that what you have been doing all these periods (one year gap)

1617


Is c programming hard?

576






What is the difference between union and structure in c?

576


The file stdio.h, what does it contain?

667


What is function what are the types of function?

560


What are different types of variables in c?

571


What is a void pointer? When is a void pointer used?

626


What does %c mean in c?

651


What are the general description for loop statement and available loop types in c?

687


Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)

688


What is the use of header files?

606


WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

1597