Please explain, it seems it converts decimal to binary but how I don't know..... Code is in description | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Please explain, it seems it converts decimal to binary but how I don't know..... Code is in description

#include<stdio.h> #include<conio.h> void bin(unsigned int n); void main() { bin(7); printf("\n"); bin(4); } void bin(unsigned int n) { if(n>1) bin(n/2); printf("%d", n%2); }

14th Oct 2019, 1:30 PM
Mohammed Mesum Hussain
Mohammed Mesum Hussain - avatar
2 Answers
+ 1
void main illegal, oh really! Is that the case? I am using this app called Decoder, it seems to be using the new C language (at least that's what I think). I wrote this code in that and copied and pasted here.
14th Oct 2019, 8:12 PM
Mohammed Mesum Hussain
Mohammed Mesum Hussain - avatar
+ 1
How to get updated on such things I mean what sources do you use
14th Oct 2019, 9:17 PM
Mohammed Mesum Hussain
Mohammed Mesum Hussain - avatar