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

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

Is This Answer Correct ?    9 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between void main and main in c?

1209


Is return a keyword in c?

1147


Why is c called a structured programming language?

1333


What is the purpose of realloc()?

1199


What is a program flowchart?

1284


Write a program to print numbers from 1 to 100 without using loop in c?

1136


How can you call a function, given its name as a string?

1209


Explain the difference between malloc() and calloc() function?

1102


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

1213


What is the difference between class and object in c?

1241


How can I copy just a portion of a string?

1368


"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above

1073


how to find anagram without using string functions using only loops in c programming

3239


What are file streams?

1068


In which header file is the null macro defined?

1402