Monday, July 2, 2018

C program convert a decimal number into binary number using reccursion

    /*

     * C Program to Convert a Number Decimal System to Binary System using Recursion

     */

    #include <stdio.h>



    int convert(int);



    int main()

    {

        int dec, bin;



        printf("Enter a decimal number: ");

        scanf("%d", &dec);

        bin = convert(dec);

        printf("The binary equivalent of %d is %d.\n", dec, bin);



        return 0;

    }



    int convert(int dec)

    {

        if (dec == 0)

        {

            return 0;

        }

        else

        {

            return (dec % 2 + 10 * convert(dec / 2));

        }

    }

1 comment:

  1. A number is a concept that arises from the result to have things that are an aggregate or a generalization of this concept.
    numbers information

    ReplyDelete

Sacred Thought

5 May 2024 Hari Om Verse 50-51, chapter two:  In this chapter two Shree krishna explains a simple way of living. Free from desires and void ...