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


i want to make a program in which we use input having four
digits(4321) and get output its reciprocal(1234).



i want to make a program in which we use input having four digits(4321) and get output its reciproc..

Answer / fcuker

#include <stdio.h>

int main() {
int x;
scanf("%d", &x);
while (x > 0) {
printf("%d", x % 10);
x = x / 10;
}
return 0;
}

Is This Answer Correct ?    7 Yes 0 No

Post New Answer

More C Interview Questions

Explain what header files do I need in order to define the standard library functions I use?

0 Answers  


Write a C program to find the smallest of three integers, without using any of the comparision operators.

7 Answers   TCS,


Why is c platform dependent?

0 Answers  


What is the easiest sorting method to use?

0 Answers  


Do you know what are bitwise shift operators in c programming?

0 Answers  


What does the format %10.2 mean when included in a printf statement?

0 Answers  


How can my program discover the complete pathname to the executable from which it was invoked?

0 Answers  


write a C code To reverse a linked list

2 Answers   Motorola, Wipro,


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

0 Answers  


Write a program to print all the prime numbers with in the given range

8 Answers   ABC, College School Exams Tests, TCS,


By using C language input a date into it and if it is right?

0 Answers   Aricent,


How variables are declared in c?

0 Answers  


Categories