write a program to display the array elements in reverse
order in c language
Answer Posted / 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 |
Post New Answer View All Answers
find out largest elemant of diagonalmatrix
how to count no of words,characters,lines in a paragraph.
What is a constant?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Why can't I perform arithmetic on a void* pointer?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is the right type to use for boolean values in c?
What are the advantages and disadvantages of a heap?
When is a null pointer used?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How can I remove the trailing spaces from a string?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What is the symbol indicated the c-preprocessor?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
if p is a string contained in a string?