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 / susarya
For(i=8;i>=0:i--);
{
printf("%d",M[i]);
scanf("%d,M[i++]")
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is a memory leak? How to avoid it?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
write an algorithm to display a square matrix.
What is difference between structure and union?
how to count no of words,characters,lines in a paragraph.
State two uses of pointers in C?
Explain what is dynamic data structure?
Why static variable is used in c?
What is the difference between text files and binary files?
Why is a semicolon (;) put at the end of every program statement?
Explain what math functions are available for integers? For floating point?
What is difference between array and pointer in c?
What is omp_num_threads?