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
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Do you know the purpose of 'register' keyword?
Is c is a procedural language?
Describe the difference between = and == symbols in c programming?
What are run-time errors?
What is a string?
What is the significance of scope resolution operator?
What is structure data type in c?
Give differences between - new and malloc() , delete and free() ?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
How can I direct output to the printer?
What does s c mean on snapchat?
Write a program to identify if a given binary tree is balanced or not.
Here is a neat trick for checking whether two strings are equal
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.