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
How can a process change an environment variable in its caller?
How can I manipulate strings of multibyte characters?
What are pointers? What are different types of pointers?
What is c variable?
What is array in c with example?
What is static volatile in c?
How do you use a 'Local Block'?
What is function what are the types of function?
What is null pointer constant?
How can you draw circles in C?
Does c have function or method?
Can you write the function prototype, definition and mention the other requirements.
Does free set pointer to null?
What is the method to save data in stack data structure type?
What is uint8 in c?