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};

Answer Posted / mithun

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

Is This Answer Correct ?    7 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is the general form of a c program?

1145


Explain the use of bit fieild.

1198


What are the features of c language?

1125


which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +

1781


please send me the code for multiplying sparse matrix using c

2224


Write a function that will take in a phone number and output all possible alphabetical combinations

1100


What is pointer to pointer in c language?

1211


What is array in C

1211


What is calloc malloc realloc in c?

1107


What are the 5 data types?

1211


What should malloc(0) do?

1187


How will you print TATA alone from TATA POWER using string copy and concate commands in C?

1423


Describe static function with its usage?

1274


swap 2 numbers without using third variable?

1177


Tell me what is the purpose of 'register' keyword in c language?

1039