write a statement to display all the elements array M(in reverse order?
int M[8]={20,21,22,23,24,25,26,27};
Answers were Sorted based on User's Feedback
Answer / susarya
For(i=8;i>=0:i--);
{
printf("%d",M[i]);
scanf("%d,M[i++]")
}
| Is This Answer Correct ? | 0 Yes | 1 No |
What are the preprocessor categories?
provide an example of the Group by clause, when would you use this clause
what is the meaning of 'c' language
What is the use of structure padding in c?
What is the most efficient way to count the number of bits which are set in a value?
Write a code of a general series where the next element is the sum of last k terms.
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
What are called c variables?
How is a structure member accessed?
largest Of three Number using without if condition?
What is a string?
Using which language Test cases are added in .ptu file of RTRT unit testing???