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 is the difference between set and map in c++?

1134


Name the implicit member functions of a class.

1076


Explain the virtual inheritance in c++.

1057


Where is atoi defined?

1134


What are the manipulators in c++?

1038


What is the limitation of cin while taking input for character array?

2069


Why can templates only be implemented in the header file?

1101


Can you overload the operator+ for short integers?

1039


How compile and run c++ program in turbo c++?

1172


What is std :: flush?

1055


which operator is used for performing an exponential operation a) > b) ^ c) none

1057


Why should we use null or zero in a program?

1028


Is java easier than c++?

1025


Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement

1176


Is main a class in c++?

1000