Question: You are required to write a C program that accepts two decimal integers, say d and r . You may assume that the first decimal

You are required to write a C program that accepts two decimal integers, say d and r. You may assume that the first decimal integer d is nonnegative and that the second decimal integer r which represents the radix, will be one of 2, 3, 4, . . ., 15, 16. The program should convert the first decimal integer d into its representation in radix r and print the result.

Examples:

Suppose the first decimal integer is 138 and the second decimal integer is 16. In this case, the output produced by your program should be 8A, which is the hexadecimal (radix 16) representation of the decimal integer 138.

Suppose the first decimal integer is 284 and the second decimal integer is 13. In this case, the output produced by your program should be 18B, which is the radix 13 representation of the decimal integer 284. (In base 13, the digits used are 0, 1, 2, . . ., 9, A, B and C, where A, B and C represent 10, 11 and 12 respectively.)

Your program should be written so that it handles just one pair of integers. Thus, the outline for your program is as follows. (Note that no error checks are needed.)

1.Prompt the user to type two decimal integers.

2.Read the two integers.

3.Convert the first integer into its representation in the radix specified by the second integer.

4.Print the representation and stop.

Your program must read the two integers from stdin and write the answer to stdout. You may assume that when prompted, the user will type two integers separated by one or more spaces.

Notes:

Recall that for any radix r 2, the digits to be used are 0, 1, . . ., r 1. Use the letters A, B, C, D, E and F to represent 10, 11, 12, 13, 14 and 15 respectively, as done in the hexadecimal system. Thus, representations in radix 11 can use the digits 0, 1, . . ., 9, A; representations in radix 12 can use 0, 1, . . ., 9, A, B, and so on.

Use the division method to generate the digits of the required representation.

Use a char array to store each digit generated by the division method as an appropriate character. This array should be printed out at the end.

After each call to the function printf, include the following C statement: fflush(stdout);. Example: printf("Enter two integers: "); fflush(stdout);.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!