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);
}
Answers were Sorted based on User's Feedback
Answer / amit
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.
| Is This Answer Correct ? | 66 Yes | 4 No |
Who had beaten up hooligan "CHAKULI" in his early college days?
how to add our own function in c library please give details.?
What is function prototype in c with example?
What is c language in simple words?
When is a null pointer used?
How to print India by nested loop? I IN IND INDI INDIA
What is the scope of an external variable in c?
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
What are the advantages and disadvantages of c language?
What is the explanation for cyclic nature of data types in c?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
What is Heap?