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...

simple c++ program for "abcde123ba" convert "ab321edcba"
with out using string

Answer Posted / sandeep

#include<iostream.h>
#include<string.h>
int main()
{

char a='abcde123ba';
strrev(a);
cout<<a;
getch();
return 0;
}

Is This Answer Correct ?    2 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the two main components of c++?

1154


How a modifier is similar to mutator?

1242


What is the difference between a "copy constructor" and an "assignment operator" in C++?

1115


Can we declare a base-class destructor as virtual?

1072


What is virtual destructor ans explain its use?

1170


What is an adaptor class in c++?

1286


What is c++ hash?

1156


What are the four partitions in which c++ compiler divides the ram?

1285


What are the uses of typedef in a program?

1132


What is the use of :: operator in c++?

1184


Why #include is used?

1118


What are proxy objects in c++?

1235


What is c++ iterator?

1218


Can manipulators fall in love?

1070


Describe the process of creation and destruction of a derived class object?

1171