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 / susarya
For(i=8;i>=0:i--);
{
printf("%d",M[i]);
scanf("%d,M[i++]")
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is a protocol in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Why doesn't C support function overloading?
Is stack a keyword in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
How macro execution is faster than function ?
What does the && operator do in a program code?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Why is c used in embedded systems?
Can we compile a program without main() function?
What is ## preprocessor operator in c?
What is a static function in c?
What is c definition?
What is pointer in c?