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=0;i<8;i++)
{
printf(M[i]);
}
| Is This Answer Correct ? | 3 Yes | 9 No |
Post New Answer View All Answers
Explain the difference between #include "..." And #include <...> In c?
Why clrscr is used after variable declaration?
What is #define used for in c?
Can you define which header file to include at compile time?
what is the significance of static storage class specifier?
Is boolean a datatype in c?
How are strings stored in c?
What is a char in c?
Why c is called a mid level programming language?
Explain what is the advantage of a random access file?
What are types of preprocessor in c?
How do I use strcmp?
Why we use conio h in c?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
code for replace tabs with equivalent number of blanks