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 / s
20
| Is This Answer Correct ? | 0 Yes | 13 No |
Post New Answer View All Answers
How can I open files mentioned on the command line, and parse option flags?
Can we change the value of constant variable in c?
What does static variable mean in c?
How can my program discover the complete pathname to the executable from which it was invoked?
Explain what are reserved words?
Stimulate calculator using Switch-case-default statement for two numbers
What is the full form of getch?
What is else if ladder?
How many levels deep can include files be nested?
pierrot's divisor program using c or c++ code
Does free set pointer to null?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Can you please explain the difference between syntax vs logical error?
When is a null pointer used?