arb


{ City }
< Country > india
* Profession *
User No # 58337
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 9
Users Marked my Answers as Wrong # 15
Questions / { arb }
Questions Answers Category Views Company eMail




Answers / { arb }

Question { Aptech, 152788 }

how to convert decimal to binary in c using while loop
without using array


Answer

#include
#include
#include

void main()
{
int i=23;
char c[23];
clrscr();
cout<<"Enter any Number in Decimal to be converted in Binary\n";
cin>>i;
cout< getch();
}

Is This Answer Correct ?    9 Yes 15 No