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 program for palindrome

Answer Posted / aishwarya

/*using pointers*/
main()
{
char str[]="MalyalaM";
char *s;
s=str+8;
while(s>=str)
{
printf("%c",*s);
s--;
}
}

Is This Answer Correct ?    10 Yes 18 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What data encapsulation is in c++?

1072


Can a constructor return a value?

1175


Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h

1088


Describe protected access specifiers?

1165


What do you mean by volatile and mutable keywords used in c++?

942


We use library functions in the program, in what form they are provided to the program?

1042


Is string an object in c++?

1113


What is a singleton c++?

951


How can I learn c++ easily?

1029


Difference between delete and free.

1031


How would you call C functions from C++ and vice versa?

1106


Does dev c++ support c++ 11?

977


What is meant by the term name mangling in c++?

921


What are the stages in the development cycle?

1000


How the programmer of a class should decide whether to declare member function or a friend function?

1080