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

Answers were Sorted based on User's Feedback



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

Answer / lakshya mehra

void main()
{
int dec,rem,i=1;
long int bin=0;
printf("Enter the decimal number : ");
scanf("%d",&dec);
while(dec>0)
{
rem=dec%2;
dec=dec/2;
bin=bin+(i*rem);
i=i*10;
}
printf("The binary number is %l",bin);
getch();
}

Explanation:
The output variable bin is taken as long int bcoz it might
exceed the range of normal int.

e.g.
dec=25

Then

bin=(1*1)+(10*0)+(100*0)+(1000*1)+(10000*1)
=11001

Is This Answer Correct ?    411 Yes 160 No

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

Answer / @pravin.08

@sudha
ur code is abs right with a minor mistake.
main()
{
int num,rem,b=0,i=1;
printf("enter num");
scanf("%d",&num);
while(num)
{
rem=num%2;
num=num/2;
b=b+rem*i;
i=i*10;
}
printf("\n%d",b);

}

Is This Answer Correct ?    142 Yes 96 No

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

Answer / sachin kumar sharma

#include<stdio.h>
#include<conio.h>
void main()
{
int d,rem,i=1;
long int bin=0;
printf("Enter the decimal number : ");
scanf("%d",&d);
while(d>0)
{
rem=d%2;
d=d/2;
bin=bin+(i*rem);
i=i*10;
}
printf("The binary number is %ld",bin);
getch();
}
/* eg.
enter decimal no 10
binary no is 1010

Is This Answer Correct ?    53 Yes 24 No

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

Answer / nimesh soni

#include<stdio.h>
void main()
{
long int no,i,k,andmask;
printf("Entre No ");
scanf("%ld",&no);
for(i=15;i>=0;i--)
{
andmask=1<<i;
k=no & andmask;
k==0 ? printf("0 ") : printf("1 ");
}
}

Is This Answer Correct ?    17 Yes 8 No

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

Answer / tushar srivastava

//A very Powerful method just a bit of tweaking done here
#include<iostream.h>
#include<conio.h>
void main()
{
unsigned long dec,rem,i=1;
unsigned long bin=0;//remember to set it to zero
cout<<"Enter a decimal number : ";
cin>>dec;
while(dec>0)
{
rem=dec%2;
dec=dec/2;
bin=bin+(i*rem);
i=i*10;
}
cout<<"The binary form is "<<bin;
getch();
clrscr();
}

//this method is tested by me it worked till 1023 but not
over it
//but it's fine right......

Is This Answer Correct ?    13 Yes 7 No

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

Answer / pritesh2444

#include<stdio.h>
void main()
{
int n,j=0,i=1;
printf("\nEnter the number : ");
scanf("%d",&n);
while(n!=0)
{
j=j+((n%2)*i);
n=n/2;
i=i*10;
}
printf("%d",j);
}

Is This Answer Correct ?    23 Yes 19 No

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

Answer / tushar srivastava

Hi Friends, This is Tushar Srivastava once again. This time
I have a program which is compatible with real world bit
level communication, since I have used the VC++'s 'bool'
keyword which can store only since bit of data. Take aa look
at this simple algorithm purely developed by me.
Please note that this program has used VC++'s 'bool' keyword
which will not be available with Turbo C++ 16 bit IDE (Old
DOS Mode).
Thank you.

// Bit Converter.cpp : This Program is a simple decimal to
binary converter
//This is a demonstration program which demonstrate the
method to convert any integer data into it's binary equivalent
//The algorithm is made be Tushar Srivastava independent of
any other person working on same method.
//This program is available to users under General Public
License.

#include "stdafx.h"
#include <stdio.h>
#include <conio.h>

int i;
bool bits(int bit_data);
int main()
{
int input_data=0;
bool bit=0;
printf("Please Enter the data to be converted :");
scanf("%d",&input_data);
for(i=15;i>=0;i--)
{
bit = bits(input_data);
printf("%d",bit);
}
getch();
return 0;
}

bool bits(int bit_data)
{
int temp_var;
temp_var = bit_data >> i;
temp_var &= 0x01;
return temp_var;
}

Is This Answer Correct ?    7 Yes 6 No

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

Answer / pritesh

#include<stdio.h>
void main()
{
int j=0,n,i=1;
printf("\nenter no.=");
scanf("%d",&n);
while(n!=0)
{
j=j+((n%2)*i);
n=n/2;
i=i*10;
}
printf("%d",j);
}

Is This Answer Correct ?    6 Yes 6 No

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

Answer / mritunjay kumar

void main()
{
int no,i=1,r,bin=0;
printf("enter a decimal no:-");
scanf("%d",&no);
clrscr();
while(no!=0)
{
r=no%2;
no=no/2;
bin=bin+(r*i);
i=i*10;
}
printf("converted no%d",bin);
getch();
}

Is This Answer Correct ?    8 Yes 8 No

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

Answer / rupam

#include<stdio.h>
#include<conio.h>
main(){
int dec,i,c,rem,bin[16];
c=0;
printf("\n \t Enter the Value : ");
scanf("%d",&dec);
while(dec!=0){
rem=dec%2;
bin[c]=rem;
dec=dec/2;
c++;
}
printf("\n \t Binary Equivalent : ");
for(i=(c-1);i>=0;i--){
printf("%d",bin[i]);
}
getch();
}

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More C C++ Errors Interview Questions

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

50 Answers   Apple, Aptech, Arwen Tech, BCS, C2D Software, CEC,


I'm having trouble with coming up with the correct code. Do I need to put a loop? Please let me know if I'm on the right track and what areas I need to correct. I still don't have a good grasp on this programming stuff. Thanks =) The assignment was to write a program using string functions that accepts a coded value of an item and displays its equivalent tag price. The base of the keys: 0 1 2 3 4 5 6 7 8 9 X C O M P U T E R S Sample I/O Dialogue: Enter coded value: TR.XX Tag Price : 68.00

3 Answers   UCB,


Given that two int variables, total and amount , have been declared, write a sequence of statements that: initializes total to 0 reads three values into amount , one at a time. After each value is read in to amount , it is added to the value in total (that is, total is incremented by the value in amount ). Instructor's notes: If you use a loop, it must be a for loop. And if you use a loop control variable for counting, you must declare it.

1 Answers   Google,


class test { int a; public: test(int b):a(b){} void show(){ cout<<a; } }; void main() { test t1; test t2(5); t1.show(); t2.show(); } }

1 Answers  


Write a c-programe that input one number of four digits and find digits sum?

2 Answers  






how to convert decimal to hexadecimal without using arrays just loops

2 Answers  


What is the out put of this programme? int a,b,c,d; printf("Enter Number!\n"); scanf("%d",&a); while(a=!0) { printf("Enter numbers/n"); scanf("%d%d%d",&b,&c,&d); a=a*b*c*d; } printf("thanks!"); getche(); Entering numbers are a=1,b=2,c=3,d=4 b=3,c=4,d=-5 b=3,c=4,d=0

5 Answers   TCS,


wap for bubble sort

3 Answers  


errors are known as?

3 Answers   EX, State Bank Of India SBI,


Given that two int variables, total and amount, have been declared, write a loop that reads integers into amount and adds all the non-negative values into total. The loop terminates when a value less than 0 is read into amount. Don't forget to initialize total to 0. Instructor's notes: This problem requires either a while or a do-while loop.

3 Answers  


Display this kind of output on screen. 1 0 1 1 0 1 3. Display this kind of output on screen. 1 1 0 1 0 1 4. Display this kind of output on screen. 1 1 0 1 0 1 5.Display this kind of output on screen. 1 2 3 4 5 6 7 8 9 10

1 Answers  


Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?

2 Answers  


Categories