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

convert 12345 to 54321 withoutusing strig

Answer Posted / ismail

void main()
{
long num, temp;
for(;;) {
printf("Enter number:");
scanf("%ld",&num);
if(num == 0) break;
while(num) {
temp = num%10;
num = num/10;
printf("%ld", temp);
}
printf("\n");
break;
}
getch();
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do you know about the use of bit field?

988


How to set file pointer to beginning c?

1145


What is dynamic memory allocation?

1283


What are local static variables? How can you use them?

1081


Can include files be nested? How many levels deep can include files be nested?

1088


What are bitwise shift operators in c programming?

1038


What does void main return?

1070


`write a program to display the recomended action depends on a color of trafic light using nested if statments

2075


Why is it important to memset a variable, immediately after allocating memory to it ?

2000


Explain pointer. What are function pointers in C?

1016


What are reserved words?

1046


Explain how to reverse singly link list.

1073


What is function in c with example?

1088


What is the scope of an external variable in c?

982


What happens if header file is included twice?

1090