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
What are multidimensional arrays?
State two uses of pointers in C?
How many types of operator or there in c?
Why is C language being considered a middle level language?
What do you understand by friend-functions? How are they used?
Write a program with dynamically allocation of variable.
What is hash table in c?
When should I declare a function?
How can I find out if there are characters available for reading?
Explain what is the most efficient way to store flag values?
What is the benefit of using const for declaring constants?
What is a node in c?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is the meaning of typedef struct in c?