A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

C program to convert number from Decimal to Octal
Q:

C program to convert number from Decimal to Octal

0

C program to convert number from Decimal to Octal

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Decimal to Octal Conversion using C program

/*C program to convert number from decimal to octal*/

#include <stdio.h>

int main()
{
    int number, cnt, i;
    int oct[32];

    printf("Enter decimal number: ");
    scanf("%d", &number);

    cnt = 0; /*initialize index to zero*/
    while (number > 0) {
        oct[cnt] = number % 8;
        number = number / 8;
        cnt++;
    }

    /*print value in reverse order*/
    printf("Octal value is: ");
    for (i = (cnt - 1); i >= 0; i--)
        printf("%d", oct[i]);

    return 0;
}

Output:

    Enter decimal number: 545
    Octal value is: 1041

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now