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 / sudeshna
12
| Is This Answer Correct ? | 8 Yes | 18 No |
Post New Answer View All Answers
Describe the order of precedence with regards to operators in C.
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is the use of pragma in embedded c?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What are pointers? Why are they used?
Where we use clrscr in c?
What is structure in c language?
What is const and volatile in c?
What is the explanation for cyclic nature of data types in c?
Can we declare a function inside a function in c?
Describe newline escape sequence with a sample program?
What is queue in c?
Explain threaded binary trees?
Is there a built-in function in C that can be used for sorting data?
How can I write a function that takes a format string and a variable number of arguments?