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 |
When is a void pointer used?
what are the interview question's in the language c
please give code for this 1 2 4 7 11 16
What is memmove?
prototype of sine function.
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
why do some people write if(0 == x) instead of if(x == 0)?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What is the difference between union and anonymous union?
What is header file definition?
what is c
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?