Here is the simple program for converting decimal to binary value using While Loop in C++.
#include<iostream> using namespace std; int main() { int n,r,m=1,bin=0; cout<<"\nEnter the Number : "; cin>>n; while(n!=0) { r=n%2; bin=bin+(r*m); m=m*10; n=n/2; } cout<<"\nBinary Value : "<<bin; return 0; }To download raw file Click Here
Enter the Number : 12234 Binary Value : 757986226
Learn All in Tamil © Designed & Developed By Tutor Joes