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 / 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 |
Post New Answer View All Answers
What are the features of the c language?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is a wrapper function in c?
how is the examination pattern?
provide an example of the Group by clause, when would you use this clause
What are structural members?
what do the 'c' and 'v' in argc and argv stand for?
How to get string length of given string in c?
Hi can anyone tell what is a start up code?
What do you mean by Recursion Function?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
How many loops are there in c?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is the size of enum in c?