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
Why is structure padding done in c?
Write a Program to accept different goods with the number, price and date of purchase and display them
What does the function toupper() do?
What is the difference between printf and scanf )?
What is the use of pragma in embedded c?
Define circular linked list.
What are high level languages like C and FORTRAN also known as?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What are the 4 types of functions?
Explain the properties of union. What is the size of a union variable
Differentiate between the expression “++a” and “a++”?
Can two or more operators such as and be combined in a single line of program code?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What are keywords c?
What is call by value in c?