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

Can we replace the struct function in tree syntax with a union?

774


Explain how can I right-justify a string?

618


c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above

725


What is null pointer constant?

592


What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

583






How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

584


How can I find out if there are characters available for reading?

639


What is const keyword in c?

739


What is the size of enum in c?

612


shorting algorithmS

1798


if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.

4487


Tell me what are bitwise shift operators?

652


Which is better malloc or calloc?

645


Explain how can you tell whether two strings are the same?

580


What is logical error?

603