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...


write a statement to display all the elements array M(in reverse order?

int M[8]={20,21,22,23,24,25,26,27};

Answers were Sorted based on User's Feedback



write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,..

Answer / mithun

for(i=7;i>=0;i--)
{
printf("%d",M[i]);
}

Is This Answer Correct ?    7 Yes 1 No

write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,..

Answer / asd

for(i=8;i<=0;i--)
{
printf("%d",M[i]);
}

Is This Answer Correct ?    9 Yes 4 No

write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,..

Answer / reshma khan

for(i=8;i>0;i--)
{
printf("%d",m[i]);
}

Is This Answer Correct ?    2 Yes 3 No

write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,..

Answer / susarya

For(i=8;i>=0:i--);
{
printf("%d",M[i]);
scanf("%d,M[i++]")
}

Is This Answer Correct ?    0 Yes 1 No

write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,..

Answer / mithun

for(i=0;i<8;i++)
{
printf(M[i]);
}

Is This Answer Correct ?    3 Yes 9 No

Post New Answer

More C Interview Questions

What is #line in c?

0 Answers  


Why can arithmetic operations not be performed on void pointers?

0 Answers  


What is the difference between text files and binary files?

0 Answers  


What is Function Pointer? Explain with example?

3 Answers  


What is wild pointer in c?

0 Answers  


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

0 Answers  


What is a ternary operator in c?

0 Answers  


What are the back slash character constants or escape sequence charactersavailable in c?

0 Answers  


What is an anonymous union and where to apply that ?

3 Answers   HP,


Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?

0 Answers  


What are the standard predefined macros?

0 Answers  


Where are some collections of useful code fragments and examples?

0 Answers   Celstream,


Categories