117 Views

C++ program to convert decimal to binary 1.without using recursion 2.with using recursion


Sahithi K 17th Sep, 2019
Answer (1)
Shubham Kumar Gupta 17th Sep, 2019

Hello Sahithi, Greetings!

Required program without recursion:

  • #include <iostream>
  • using namespace std;
  • int main()
  • {
  • int a[10], n, i;
  • cout<<"Enter the number to convert: ";
  • cin>>n;
  • for(i=0; n>0; i++)
  • {
  • a[i]=n%2;
  • n= n/2;
  • }
  • cout<<"Binary of the given number= ";
  • for(i=i-1 ;i>=0 ;i--)
  • {
  • cout<<a[i];
  • }
  • }

Thank you, hope this helps.

Related Questions

Amity University, Noida Law A...
Apply
700+ Campus placements at top national and global law firms, corporates and judiciaries
Amity University, Noida BBA A...
Apply
Ranked amongst top 3% universities globally (QS Rankings)
VIT Bhopal University | M.Tec...
Apply
M.Tech admissions open @ VIT Bhopal University | Highest CTC 52 LPA | Apply now
Amity University | M.Tech Adm...
Apply
Ranked amongst top 3% universities globally (QS Rankings).
Graphic Era (Deemed to be Uni...
Apply
NAAC A+ Grade | Among top 100 universities of India (NIRF 2024) | 40 crore+ scholarships distributed
Amity University Noida B.Tech...
Apply
Among Top 30 National Universities for Engineering (NIRF 2024) | 30+ Specializations | AI Powered Learning & State-of-the-Art Facilities
View All Application Forms

Download the Careers360 App on your Android phone

Regular exam updates, QnA, Predictors, College Applications & E-books now on your Mobile

150M+ Students
30,000+ Colleges
500+ Exams
1500+ E-books