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 |
What is the data segment that is followed by c?
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
What is dangling pointer in c?
Write a program that accept anumber in words
WHAT IS HIGH LEVEL LANGUAGE?
how can make variable not in registers
Write a program to know whether the input number is an armstrong number.
write a c programme for add of two numbers with out use of arthematic operators
What is meant by initialization and how we initialize a variable?
write a program to display the array elements in reverse order in c language
What do the functions atoi(), itoa() and gcvt() do?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?