write a program to display the array elements in reverse
order in c language
Answer Posted / dally
in the above of my answer is correct coz in that i am taking
count =0;
so the array will start from last element.
| Is This Answer Correct ? | 9 Yes | 22 No |
Post New Answer View All Answers
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Under what circumstances does a name clash occur?
What are pointers really good for, anyway?
What is a far pointer in c?
What is pointer in c?
What is data structure in c programming?
Do pointers store the address of value or the actual value of a variable?
What is sorting in c plus plus?
Is it valid to address one element beyond the end of an array?
What is the use of typedef in c?
How can I swap two values without using a temporary?
What are the general description for loop statement and available loop types in c?
Which is better pointer or array?
What are the 32 keywords in c?
What are c preprocessors?