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

Explain main function in c?

616


How many levels of pointers can you have?

695


Can a local variable be volatile in c?

571


Who is the main contributor in designing the c language after dennis ritchie?

541


How many keywords (reserve words) are in c?

603






How many identifiers are there in c?

571


How main function is called in c?

620


Why do we need volatile in c?

737


What does %d do?

708


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

656


What is the difference between printf and scanf )?

581


Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?

1594


Is calloc better than malloc?

565


Can you define which header file to include at compile time?

576


What is the scope of static variables in c language?

622