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


Please Help Members By Posting Answers For Below Questions

What is calloc in c?

654


What is a structure and why it is used?

613


Why is c called a mid-level programming language?

720


A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.

1244


What is a pointer in c plus plus?

685






Explain what is the benefit of using const for declaring constants?

608


If the size of int data type is two bytes, what is the range of signed int data type?

581


In a byte, what is the maximum decimal number that you can accommodate?

621


what type of questions arrive in interview over c programming?

1549


which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;

2386


What is p in text message?

534


Write a code of a general series where the next element is the sum of last k terms.

586


Is boolean a datatype in c?

539


What is the use of in c?

570


Explain how does free() know explain how much memory to release?

569