Header Ads Widget

program to convert decimal number to binary number.

#include<stdio.h>
#include<coio.h>
//function definition ''binary'
void binary(int n)
{
    int r;
    r=n%2;
    n=n/2;
    if(n==0)
         printf("%d",r);
    else
     {
          binary(n);
          printf("%d",r);
     }
  }
void main()
 {
     int n;
     printf("Enter a decimal number");
     scanf("%d",&n);
     binary(n);
     getch();
  }

Post a Comment

5 Comments