programming9
  • Flowcharts
  • Programs
      • Back
      • C Programs
      • C++ Programs
      • Java Programs
      • Python Codes
      • HTML Codes
      • Java Script Codes
      • SQL Codes
  • Tutorials
      • Back
      • Java Tutorials
      • Competitive Programming
      • Python Tutorials
      • C Programming
  • Blog
  • Login

Decimal to Binary Conversion Using C

Written by: RajaSekhar
  • decimal to binary

Converting any decimal number to binary form using C

#include<stdio.h>
void binary(int val);
int main()
{
    int a,b;
    printf("Enter the number in decimal:");
    scanf("%d",&a);
    printf("Number in Binary form: ");
    binary(a);
    return 0;
}
void binary(int val)
{
    int r;
    r=val%2;
    val=val/2;
    if(val==0)
    {
        printf("%d",r);
    }
    else
    {
        binary(val);
        printf("%d",r);
    }
}

OUTPUT:


Enter the number in decimal:10
Number in Binary form: 1010
Previous article: Binary Search Program in C using Recursive and Non-Recursive Methods Prev Next article: Compute Factorial of Large Numbers using C Next
  • C Program to Find Area of a Square
  • C Program to Find Area of Rectangle
  • C Program to find Area of a Circle
  • C Program to CONCATENATE Two Strings using strcat()
  • C Program for Sum of Digits of a Number using Recursion
  • C Program to Calculate NCR
  • C Program to Find Prime Factors of a Given Positive Number
  • C Program for Sum of Digits of a Number
  • Implementation of Stack Using Array in C
  • C Program to Check Whether a Number is PALINDROME or Not
  • C Program to Find String Length with out using Function
  • C Program for Fibonacci Series using While Loop
  • Implementation of Queue using Array in C
  • C Program to Print Pyramid of Numbers
  • C Program Example to Initialize Structure Variable
  • Privacy Policy
  • Cookie Policy
© programming9.com 2026
Back to top