1. In quiz1.c implement digit_sum_base function using recursion that calculates the digit sum of a number's presentation with base as base. For example, if base is 2, a binary number, digit_sum_base(5, 2) should be 5's binary reprentation 101, adding up all digits together and we have 2. digit_sum_base(1234, 10) should be 10 = (1+2+3+4). You may assumen is always non-negative integer and base is an integer between 2 to 10 inclusive. 2. In main.c implement the main function so that when we run the program this is what happens: %./main Enter an int: 0 Enter a base: 10 answer is 0. $ ./main Enter an int: 1234 Enter a base: 10 answer is 10.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 8SA
icon
Related questions
Question
This is what you will need to do for the C programming:
1. In quiz1.c implement digit_sum_base function using recursion that calculates the digit sum of a number's
presentation with base as base. For example, if base is 2, a binary number, digit_sum_base(5, 2) should be 5's binary
reprentation 101, adding up all digits together and we have 2. digit_sum_base(1234, 10) should be 10 = (1+2+3+4).
You may assumen is always non-negative integer and base is an integer between 2 to 10 inclusive.
2. In main.c implement the main function so that when we run the program this is what happens:
%./main
Enter an int: 0
Enter a base: 10
answer is O.
$ ./main
Enter an int: 1234
Enter a base: 10
answer is 10.
$
Transcribed Image Text:This is what you will need to do for the C programming: 1. In quiz1.c implement digit_sum_base function using recursion that calculates the digit sum of a number's presentation with base as base. For example, if base is 2, a binary number, digit_sum_base(5, 2) should be 5's binary reprentation 101, adding up all digits together and we have 2. digit_sum_base(1234, 10) should be 10 = (1+2+3+4). You may assumen is always non-negative integer and base is an integer between 2 to 10 inclusive. 2. In main.c implement the main function so that when we run the program this is what happens: %./main Enter an int: 0 Enter a base: 10 answer is O. $ ./main Enter an int: 1234 Enter a base: 10 answer is 10. $
Expert Solution
steps

Step by step

Solved in 2 steps with 5 images

Blurred answer
Knowledge Booster
Fibonacci algorithm
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr