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
Are global variables static in c?
what is the height of tree if leaf node is at level 3. please explain
What is strcpy() function?
What is calloc()?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
How do I create a directory? How do I remove a directory (and its contents)?
Are the outer parentheses in return statements really optional?
What is a good data structure to use for storing lines of text?
What are global variables and explain how do you declare them?
Explain the meaning of keyword 'extern' in a function declaration.
Can you please explain the difference between malloc() and calloc() function?
Write a C program in Fibonacci series.
What are the primitive data types in c?
What is a char in c?
There seem to be a few missing operators ..