Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


write a program to display the array elements in reverse
order in c language

Answers were Sorted based on User's Feedback



write a program to display the array elements in reverse order in c language..

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

write a program to display the array elements in reverse order in c language..

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

write a program to display the array elements in reverse order in c language..

Answer / nanda

all the answers r wrong no logic

Is This Answer Correct ?    10 Yes 21 No

write a program to display the array elements in reverse order in c language..

Answer / jitender

all are wrong....

Is This Answer Correct ?    10 Yes 21 No

write a program to display the array elements in reverse order in c language..

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

write a program to display the array elements in reverse order in c language..

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

Post New Answer

More C Interview Questions

How to swap two values using a single variable ? condition: Not to use Array and Pointer ?

6 Answers  


What is floating point constants?

0 Answers  


write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)

10 Answers  


What is the difference between File pointer and Internal Charecter Pointer?

2 Answers   TATA,


Is the exit() function same as the return statement? Explain.

0 Answers   Agilent, ZS Associates,


Can u return two values using return keyword? If yes, how? If no, why?

7 Answers  


#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }

3 Answers   SRG,


#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?

4 Answers   Ramco,


what will be maximum number of comparisons when number of elements are given?

0 Answers  


What are data breakpoints?

3 Answers   Adobe,


main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }

2 Answers  


how to use enum datatype?Please explain me?

3 Answers   Excel,


Categories