Skip to content

Instantly share code, notes, and snippets.

View ilteriskeskin's full-sized avatar
🏠
Working from home

Ali İlteriş Keskin ilteriskeskin

🏠
Working from home
View GitHub Profile
@ilteriskeskin
ilteriskeskin / 1 Hexadecimal = 0001 Binary
Last active September 16, 2016 10:25
Onaltılık Sistemdeki Sayıyı İkilik Sisteme Çeviren C Programı
#include <stdio.h>
#include <string.h>
int main()
{
// Hex = Hexadecimal(onaltılık)
// Bin = Binary(ikilik)
char hex[17], bin[65] = "";
int i = 0;