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 statement to display all the elements array M(in reverse order?

int M[8]={20,21,22,23,24,25,26,27};

Answer Posted / susarya

For(i=8;i>=0:i--);
{
printf("%d",M[i]);
scanf("%d,M[i++]")
}

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a protocol in c?

1058


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

1327


Why doesn't C support function overloading?

2873


Is stack a keyword in c?

1155


What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

1948


How macro execution is faster than function ?

1253


What does the && operator do in a program code?

1282


In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping

1603


Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

2368


Why is c used in embedded systems?

1176


Can we compile a program without main() function?

1181


What is ## preprocessor operator in c?

1136


What is a static function in c?

1246


What is c definition?

1342


What is pointer in c?

1262