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


Please Help Members By Posting Answers For Below Questions

Explain how can I convert a number to a string?

640


‎How to define structures? · ‎

622


What is a nested formula?

599


Tell us the use of fflush() function in c language?

634


Is printf a keyword?

755






Can we increase size of array in c?

534


What's the total generic pointer type?

608


What is %d called in c?

752


Difference between Function to pointer and pointer to function

625


1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.

2332


What is the purpose of realloc()?

663


What is a protocol in c?

552


What is the use of a semicolon (;) at the end of every program statement?

764


Which header file is used for clrscr?

573


Is null always equal to 0(zero)?

578