Friday, December 3, 2021

Decimal To Binary Number Converter in C

 A simple program to ask the user to give a decimal number and then the program will convert into the binary numbers using c programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.





Program Listing

#include <stdio.h>

#include <conio.h>


int main()

{

long int d;

int i=0,a[100],j=0;

printf("\tDecimal To Binary Number Converter in C");

printf("\n\n");

printf("\tEnter the Decimal No.:");

scanf("%d",&d);

while(d>0)

{

a[i]=d%2;

d=d/2;

i++;

}

printf("\n\n");

printf("\tBinary Number Equivalent : ");

for (j=i-1;j>=0;j--)

printf("%d",a[j]);

printf("\n\n");

printf("\tEnd of Program");

printf("\n");

getch();

}

No comments:

Post a Comment