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
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
What are the various types of control structures in programming?
What is a function in c?
main() { printf("hello"); fork(); }
What is oops c?
Why clrscr is used after variable declaration?
How are Structure passing and returning implemented by the complier?
How to Throw some light on the splay trees?
regarding pointers concept
What is the difference between procedural and declarative language?
What is string function in c?
Differentiate between null and void pointers.
Explain how can you check to see whether a symbol is defined?
Can we use visual studio for c?
What is atoi and atof in c?