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 / ramkumar
1 2 3 4 5 6 7 8 9 10 11 12
| Is This Answer Correct ? | 2 Yes | 15 No |
Post New Answer View All Answers
Explain the difference between malloc() and calloc() in c?
Why is C language being considered a middle level language?
What is scope of variable in c?
What is the code in while loop that returns the output of given code?
Explain what is the benefit of using #define to declare a constant?
Is boolean a datatype in c?
What is function definition in c?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
How do shell structures work?
Explain how can I convert a string to a number?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
to find the closest pair
What are the advantages of using new operator as compared to the function malloc ()?
Why do we use int main?
Explain how do you generate random numbers in c?