C Program To Convert Octal Number To Binary Number, using While Loop
Satish B
http://technotip.com/7043/c-program-to-convert-octal-number-to-binary-number-using-while-loop/
Lets write a C program to convert a number from Octal number system(base 8) to Binary number system(base 2), using while loop.
In this C program we first convert the user entered number from Octal number system to Decimal number system. Then we take the result(which is in Decimal number system) and convert to Binary number system.
Expected Output for the Input User Input: Enter an Octal Number 14
Output: Binary Equivalent of Octal no 14 is 1100.
C Programming Interview / Viva Q&A List http://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=_juS8cQRMYs
10008941 Bytes