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

Are global variables static in c?

762


what is the height of tree if leaf node is at level 3. please explain

1706


What is strcpy() function?

762


What is calloc()?

711


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1348






How do I create a directory? How do I remove a directory (and its contents)?

699


Are the outer parentheses in return statements really optional?

678


What is a good data structure to use for storing lines of text?

696


What are global variables and explain how do you declare them?

693


Explain the meaning of keyword 'extern' in a function declaration.

829


Can you please explain the difference between malloc() and calloc() function?

720


Write a C program in Fibonacci series.

730


What are the primitive data types in c?

644


What is a char in c?

644


There seem to be a few missing operators ..

703