Skip to content

Instantly share code, notes, and snippets.

@erenkeskin
Created December 26, 2017 08:46
Show Gist options
  • Save erenkeskin/d72fdcf96426f1b235453513e71101ab to your computer and use it in GitHub Desktop.
Save erenkeskin/d72fdcf96426f1b235453513e71101ab to your computer and use it in GitHub Desktop.
#include<stdio.h>
int dec2bcd(int decimal_sayi);
int main(){
// Ornek Kullanim
int binary_sayi = dec2bcd(45);
printf("%d\n", binary_sayi);
return 0;
}
// 2 basamakli sayilar icin
int dec2bcd(int decimal_sayi)
{
return (((decimal_sayi / 10) << 4) | (decimal_sayi % 10));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment