C Exercises: Convert a binary to a decimal using for loop and without using array
C For Loop: Exercise-42 with Solution
Write a C program to convert a binary number into a decimal number without using array, function and while loop.
Visual Presentation:

Sample Solution:
C Code:
#include <stdio.h> // Include the standard input/output header file.
void main()
{
int n1, n, p=1; // Declare variables to store input and intermediate results.
int dec=0, i=1, j, d; // Declare variables for decimal and binary conversion.
printf("\n\n Convert Binary to Decimal:\n "); // Print a message.
printf("-------------------------\n"); // Print a separator.
printf("Input a binary number :"); // Prompt the user for input.
scanf("%d", &n); // Read the binary number from the user.
n1 = n; // Store a copy of the original binary number.
// Loop to convert binary to decimal.
for (j = n; j > 0; j = j / 10)
{
d = j % 10; // Get the rightmost digit.
if (i == 1)
p = p * 1;
else
p = p * 2;
dec = dec + (d * p); // Calculate the decimal equivalent.
i++; // Increment the position.
}
// Print the results.
printf("\nThe Binary Number : %d\nThe equivalent Decimal Number : %d \n\n", n1, dec);
}
Sample Output:
Convert Binary to Decimal: ------------------------- Input a binary number :11001 The Binary Number : 11001 The equivalent Decimal Number : 25
Flowchart:

C Programming Code Editor:
Previous: Write a program in C to convert a decimal number into binary without using an array.
Next: Write a C program to find HCF (Highest Common Factor) of two numbers.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join