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
What is pointer to pointer in c with example?
What would be an example of a structure analogous to structure c?
What are the advantages of external class?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is assignment operator?
Explain how can I convert a string to a number?
Explain how can I open a file so that other programs can update it at the same time?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What is c basic?
Why c is called a middle level language?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What is the description for syntax errors?
What is main () in c language?
What is #define?