Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » Homework HelpRSS Feeds

PROGRAM TO CONVERT BINARY FLOTING POINT TO OCTAL FLOATING POINT

Posted By: Waggoner Fischer     Category: C Programming     Views: 5416

WRITE A PROGRAM TO CONVERT BINARY FLOTING POINT TO OCTAL FLOATING POINT.

Code for PROGRAM TO CONVERT BINARY FLOTING POINT TO OCTAL FLOATING POINT in C Programming

#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<string.h>

void main()
{
    int rev[20],a[20],b[20],c[20];
    int i,j,k,l,flag,cntint,cntfra;
    int rem,num1,num3;
    float rem1,dno,num2,num4;
    char s[20];
    clrscr();
    cntint=cntfra=0;
    flag=l=0;
    rem=0;
    printf("ENTER THE BINARY NO : ");
    scanf("%s",&s);
    for(i=0,j=0,k=0;i<strlen(s);i++)
    {
        if(s[i]=='.')
        {
            flag=1;
        }
        elseif(flag==0)
        a[k++]=s[i]-48;
        elseif(flag==1)
        b[j++]=s[i]-48;
    }
    cntint=k;
    cntfra=j;
    for(j=0,i=cntint-1;j<cntint;j++,i--)
    {
        rem = rem + (a[j] * pow(2,i));
    }
    for(k=0,i=1;k<cntfra;k++,i++)
    {
        rem1 = rem1 + (b[k] / pow(2,i));
    }
    rem1 = rem + rem1;
    dno=rem1;
    num1 = (int)dno;
    num2 = dno - num1;
    i=0;
    while(num1!=0)
    {
        rem = num1 % 8;
        rev[i] = rem;
        num1 = num1 / 8;
        i++;
    }
    j=0;
    while(num2!=0.0)
    {
        num2 =num2 * 8;
        num3 = (int) num2;
        num4 = num2 - num3;
        num2 = num4;
        c[j] = num3;
        j++;
        if(j==4)
        {
            break;
        }
    }
    l=i;
    printf("\nTHE OCTAL VALUE OF GIVEN BINARY NO IS : ");
    for(i=l-1;i>=0;i--)
    {
        printf("%d",rev[i]);
    }
    printf(".");
    for( k=0;k<j;k++)
    {
        printf("%d",c[k]);
    }
    getch();
}
/* OUTPUT
--------------------------------------------------------
ENTER THE BINARY NO : 1001010.110

THE OCTAL VALUE OF GIVEN BINARY NO IS : 112.6
*/
  
Share: 



Waggoner Fischer
Waggoner Fischer author of PROGRAM TO CONVERT BINARY FLOTING POINT TO OCTAL FLOATING POINT is from Frankfurt, Germany.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!