Advertisement
rafikamal

Decimal To Binary

Jan 28th, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void decimalToBinary(int number);
  4.  
  5. int main()
  6. {
  7.     decimalToBinary(14);
  8.    
  9.     return 0;
  10. }
  11.  
  12. void decimalToBinary(int number)
  13. {
  14.     if(number != 0)
  15.     {
  16.         decimalToBinary(number / 2);
  17.         printf("%d", number % 2);
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement