Answered step by step
Verified Expert Solution
Question
1 Approved Answer
This is programming in C In your program, perform the following steps, compiling and running AFTER EACH STEP. (NOTE: use for loops for all the
This is programming in C
In your program, perform the following steps, compiling and running AFTER EACH STEP. (NOTE: use for loops for all the loops in your program.) 1. Prompt the user to enter a binary number. You may assume that the user will enter a number that consists only of l's and O's. 2. Store this input as a string. (compile and run) 3. Determine the length of the string so that you can declare another array to hold the integer values of each digit. (Remember, that you have to specify a size when declaring an array.) Print the number of digits (length of the string). (compile and run) 4. Use a for loop to go through the input array character by character and store the integer value of each in the integer array. 5. Use a for loop to print out the integer array to the user. (compile and run) 6. Use another for loop to convert the binary number entered by the user to a decimal value by using each integer in the integer array. (Remember how to convert binary to decimal on paper? Hint: You need to use the pow() function from the math library.) 7. Print the decimal value to the user. (compile and run) Sample output is show below: > a.out Enter a binary number consists of only ls and Os): 110101101 Your binary number consists of 9 digits The binary number you entered was: 110101101 this comes from a for loop with the integer array The decimal equivalent of that number is: 429Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started