programming-examples/c/_Basic/C Program to Convert Binary to Octal.c
2019-11-15 12:59:38 +01:00

20 lines
504 B
C

/*
* C Program to Convert Binary to Octal
*/
#include <stdio.h>
int main()
{
long int binarynum, octalnum = 0, j = 1, remainder;
printf("Enter the value for binary number: ");
scanf("%ld", &binarynum);
while (binarynum != 0)
{
remainder = binarynum % 10;
octalnum = octalnum + remainder * j;
j = j * 2;
binarynum = binarynum / 10;
}
printf("Equivalent octal value: %lo", octalnum);
return 0;
}