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
Answer / susarya
For(i=8;i>=0:i--);
{
printf("%d",M[i]);
scanf("%d,M[i++]")
}
| Is This Answer Correct ? | 0 Yes | 1 No |
What is #line in c?
Why can arithmetic operations not be performed on void pointers?
What is the difference between text files and binary files?
What is Function Pointer? Explain with example?
What is wild pointer in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is a ternary operator in c?
What are the back slash character constants or escape sequence charactersavailable in c?
What is an anonymous union and where to apply that ?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What are the standard predefined macros?
Where are some collections of useful code fragments and examples?