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
What is the difference between void main and main in c?
Is return a keyword in c?
Why is c called a structured programming language?
What is the purpose of realloc()?
What is a program flowchart?
Write a program to print numbers from 1 to 100 without using loop in c?
How can you call a function, given its name as a string?
Explain the difference between malloc() and calloc() function?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What is the difference between class and object in c?
How can I copy just a portion of a string?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
how to find anagram without using string functions using only loops in c programming
What are file streams?
In which header file is the null macro defined?