write a program to display the array elements in reverse
order in c language
Answers were Sorted based on User's Feedback
Answer / bhikshuk patel
Actually i haven't any idea on array in reverse order. If
anyone will give dis answer, i'll be grateful to him/her.
And plz, tell me in brief.
thnk u..
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / mak
What if the iputted value of n is greater than the size of
array defined at the beginings????????
| Is This Answer Correct ? | 9 Yes | 19 No |
Answer / 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 |
Answer / arpit dhandhania
Answer #2: You have assigned the elements of the array in
the program itself which by default starts from array index
0 that is the numbers goes into the array indices 0 1 2 3
4 and you have not initialzed or modified the value of i in
the first loop which happens to be a garbage or 0 so the
count goes to infinite. coz a[i] is never '\0'
Secondly in a numeric array last element in not null
character it is only in case of character arrays.
Assuming that you have implemented the 1st loop correctly
and you have the length of array a in count ie = 4 since u
are starting from 0 then you have initialized i to count
which makes i = 4.In the second loop the condition is i>=1
so i=0 is never visited and thus a[0] ir not displayed
(remember in C array starts from 0 by default).
| Is This Answer Correct ? | 5 Yes | 20 No |
Explain how do you list files in a directory?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
Explain what is dynamic data structure?
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,
What is c mainly used for?
to find the closest pair
Explain the difference between malloc() and calloc() in c?
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
which of 'arrays' or 'pointers' are faster?
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST