This is the example of c-programming. You can edit and compile code in your own way on clicking button. If you have better solution or you found any error on code, then give us suggestion.
Full Code:
Code Explanation :
This program takes a decimal number as input and converts it into binary number.
- Take a decimal number and store it in the variable
number
. - Initialize the variable
binary
to zero and variableplace
to 1. - Obtain the remainder and quotient of the decimal number. Store the remainder in the variable
remainder
and override the variablen
with quotient. - Multiply
remainder
with variableplace
. Increment the variablebinary
with this new value. - Multiply the variable place by 10.
- Repeat the steps 3, 4 and 5 with the quotient obtained until quotient becomes zero.
- Print the variable
binary
as output.
Algorithm
Step 1 : Start Step 2 : Declare variables number, n, remainder, binary and place Step 3 : Initialize binary = 0 and place = 1 Step 4 : Take input and stored on number Step 5 : Set n = number Step 6 : repeat this process until n > 0 6.1 : remainder = n % 2 6.2 : binary += remainder * place 6.3 : place *= 10 6.4 : n /= 2 Step 7 : Print binary Step 8 : End
Flowchart

Our example mainly covers following topics in any programing
- Basic Programs
- Number Programs
- Array Programs
- Matrix Programs
- Pattern Programs
- String Programs
- Tree Programs
- Singly Linked List Programs
- Circular Linked List Programs
- Doubly Linked List Programs
Here we share programs on various topics such as array strings, series area & volume of geometric figures, mathematical calculation algorithms for sorting & searching and much more.Our goal is to provide you with the perfect solution to all the programming problems you may have encountered either during interviews or in class assignments. If you don’t find what you are looking for then please drop a line in the comment section of example page or you can request from account page so that we can get it added to the below collection of programs. Happy Learning!!
If you are confident with the above programs and are able to successfully understand and run them without any problems then it is time for you to take a step further and learn comprehensive programming principles using examples and flow diagrams. Here is the link: Programming tutorial lists .
If you find this example helpful, don't forget to share it with your friends. And stay updated with us by subscribing adzetech.
If you find any code error or grammetical error then you can suggest for example improvement on clicking below button.
Check out these related examples:
- Display the pattern like right angle using an asterisk
- C Program to Convert Binary to Octal [function]
- C Program to Check Whether a Number is Prime or Not
- C Program to Calculate the Sum of Natural Numbers
- C Program to Find LCM of two Numbers
- C Program to Check Leap Year
- C Programming Code To Create Pyramid and Pattern
- How to access the address of a variable without pointers?
- C Program to Find the Length of a String
- C Program Swap Numbers in Cyclic Order Using Call by Reference
Leave comment