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 / sudeshna
12
| Is This Answer Correct ? | 8 Yes | 18 No |
Post New Answer View All Answers
Explain the binary height balanced tree?
What are the main characteristics of c language describe the structure of ac program?
What is c system32 taskhostw exe?
Explain 'far' and 'near' pointers in c.
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Write a program to identify if a given binary tree is balanced or not.
What is preprocessor with example?
What is the main difference between calloc () and malloc ()?
When do we get logical errors?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Why shouldn’t I start variable names with underscores?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is c++ used for today?
What is dynamic variable in c?
What are structure members?