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 advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
Explain what are multibyte characters?
How does sizeof know array size?
How do you use a pointer to a function?
What is unary operator?
Find the highest of three numbers and print them using ascending orders?
Explain heap and queue.
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
How can I read a binary data file properly?
what are the compilation steps? ( i want inside the compiler )
how many times of error occur in C