Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

Answer = 1
because value of k = 1 after first loop execution. so, it next all the values are greater than k and will not print any thing after that.

Is This Answer Correct ?    66 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

explain what are actual arguments?

1146


What happens if a header file is included twice?

1081


Can you return null in c?

1235


What are static variables in c?

1133


Why is it usually a bad idea to use gets()? Suggest a workaround.

1874


What does return 1 means in c?

1122


What is array in c with example?

1360


How important is structure in life?

1153


Explain how can you avoid including a header more than once?

1149


What is the code for 3 questions and answer check in VisualBasic.Net?

2210


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

1216


write a program to copy the string using switch case?

2951


What is the maximum no. of arguments that can be given in a command line in C.?

1204


Which header file is essential for using strcmp function?

1545


What is multidimensional arrays

1177