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 / ragavan

#include<stdio.h>
#include<conio.h>
//Using recursive
void print( char c)
{
char a;
if(c=='\n')
return;
a=getchar();
print(a);
printf("%c",c);
return;
}

void main()
{
char c;
clrscr();
c= getchar();
print(c);
getch();
}

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you link a c program with a c function?

1006


Explain how to initialize a const member data.

982


What are the basic data types used in c++?

998


What is c++ namespace?

1143


Which field is used in c++?

1048


How the virtual functions maintain the call up?

1086


Explain linear search.

1003


Do you know about latest advancements in C++ ?

1158


Am pass the 10000 records to target in target I will take commit interval 15000 when I was stop the work flow what will happened

1509


How do you decide which integer type to use?

948


Is c the same as c++?

954


Write is a binary search tree? Write an algo and tell complexity?

970


Will c++ be replaced?

995


What is runtime errors c++?

1066


What are static type checking?

1010