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
Explain what is the general form of a c program?
Explain the use of bit fieild.
What are the features of c language?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
please send me the code for multiplying sparse matrix using c
Write a function that will take in a phone number and output all possible alphabetical combinations
What is pointer to pointer in c language?
What is array in C
What is calloc malloc realloc in c?
What are the 5 data types?
What should malloc(0) do?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Describe static function with its usage?
swap 2 numbers without using third variable?
Tell me what is the purpose of 'register' keyword in c language?