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 many data structures are there in c?
Are enumerations really portable?
Can you write a programmer for FACTORIAL using recursion?
What is difference between Structure and Unions?
When is a void pointer used?
What are structural members?
What is structure and union in c?
Explain what is meant by 'bit masking'?
What are the features of the c language?
What are the rules for the identifier?
What are directives in c?
What are extern variables in c?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Are the expressions * ptr ++ and ++ * ptr same?
What library is sizeof in c?