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 |
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?
What is wrong in this statement? scanf(“%d”,whatnumber);
differentiate built-in functions and user – defined functions.
What is Bitwise Operator and how it works?
Can we declare a function inside a function in c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
how to print 212 as Twohundreds twelve plz provide me ans soon
What are unions in c?
wtite a program that will multiply two integers in recursion function
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
what is answer for perfect number????????????????