+ 5
how to creat a program to convert desimal to binairy number?
with any language that you want
2 odpowiedzi
+ 5
C :
void p(long long i){
unsigned long long b = 1;
while(i >> ++b);
while(--b)
putchar(((i >> b) & 1) + '0');
}
with any language that you want