Question: Using C Program in Code blocks Write a function BIN2DEC (binary to decimal) that accepts an array of characters representing a binary number. The maximum
"Using C Program in Code blocks"

Write a function BIN2DEC (binary to decimal) that accepts an array of characters representing a binary number. The maximum number of elements is 8 and the possible value of the each character is '0 or '1. The function returns the equivalent decimal number. int BIN2DEC (char *str) E.g. if the user inputs 11101 7 6543 2 10 str 111012- 1x24 + 1x23 1x22 +0x21 + 1x20 291 EML 3811 Activity 2: String, Pointer, and Function 1111 - >15 1010-10 1100 12 10001010 index 0 7 int BIN2DEC (char *str) 138
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
