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
Explain how are portions of a program disabled in demo versions?
What is data types?
List the different types of c tokens?
Does c have enums?
Explain the difference between getch() and getche() in c?
Explain the difference between exit() and _exit() function?
Discuss the function of conditional operator, size of operator and comma operator with examples.
How can I trap or ignore keyboard interrupts like control-c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How to write a code for reverse of string without using string functions?
Give basis knowledge of web designing ...
What is merge sort in c?
What is structure data type in c?
All technical questions
Explain how can I convert a string to a number?