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 Hexadecimal
Q:

C program to convert number from Decimal to Hexadecimal

0

C program to convert number from Decimal to Hexadecimal

All Answers

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

Decimal to Hexadecimal Conversion using C program

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

#include <stdio.h>

int main()
{
    int number, cnt, i;
    char hex[32]; /*bcoz it contains characters A to F*/

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

    cnt = 0; /*initialize index to zero*/
    while (number > 0) {
        switch (number % 16) {
        case 10:
            hex[cnt] = 'A';
            break;
        case 11:
            hex[cnt] = 'B';
            break;
        case 12:
            hex[cnt] = 'C';
            break;
        case 13:
            hex[cnt] = 'D';
            break;
        case 14:
            hex[cnt] = 'E';
            break;
        case 15:
            hex[cnt] = 'F';
            break;
        default:
            hex[cnt] = (number % 16) + 0x30; /*converted into char value*/
        }
        number = number / 16;
        cnt++;
    }

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

    return 0;
}

Output:

    First Run:
    Enter decimal number: 545
    Octal value is: 221

    Second Run:
    Enter decimal number: 2806
    Hexadecimal value is: AF6

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