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 / ramkumar

1 2 3 4 5 6 7 8 9 10 11 12

Is This Answer Correct ?    2 Yes 15 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is there a way to switch on strings?

607


Explain Function Pointer?

678


Can the curly brackets { } be used to enclose a single line of code?

707


What is c language & why it is used?

572


What are different types of variables in c?

563






Can you write the function prototype, definition and mention the other requirements.

651


How do you print an address?

736


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

546


What does int main () mean?

539


Tell us bitwise shift operators?

590


What is header file in c?

597


How can you convert integers to binary or hexadecimal?

607


shorting algorithmS

1792


What are actual arguments?

639


What is the difference between local variable and global variable in c?

677