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 use of linkage in c language?
cavium networks written test pattern ..
Explain About fork()?
What is the purpose of main() function?
What is the general form of #line preprocessor?
how can use subset in c program and give more example
Is c compiled or interpreted?
Why we not create function inside function.
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
How does placing some code lines between the comment symbol help in debugging the code?
What is include directive in c?
What is main () in c?
What is the difference between a function and a method in c?
What is the difference between int main and void main?
explain what are actual arguments?