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
What is the purpose of main() function?
Explain what is the difference between functions getch() and getche()?
using only #include
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is volatile variable how do you declare it?
diff between exptected result and requirement?
How does struct work in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What are dangling pointers in c?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is the scope of local variable in c?
What is stack in c?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.