UrbanPro

Learn C Language from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

How can you convert hexadecimal to binary without using arrays or strings in a C program?

Asked by Last Modified  

Follow 0
Answer

Please enter your answer

Tutor

Simple just use switch case int main() { char binarynum, hexa; long int i = 0; printf("Enter the value for hexadecimal "); scanf("%s", hexa); printf("\n Equivalent binary value: "); while (hexa) { switch (hexa) { case '0': ...
read more
Simple just use switch case int main() { char binarynum[MAX], hexa[MAX]; long int i = 0; printf("Enter the value for hexadecimal "); scanf("%s", hexa); printf("\n Equivalent binary value: "); while (hexa[i]) { switch (hexa[i]) { case '0': printf("0000"); break; case '1': printf("0001"); break; case '2': printf("0010"); break; case '3': printf("0011"); break; case '4': printf("0100"); break; case '5': printf("0101"); break; case '6': printf("0110"); break; case '7': printf("0111"); break; case '8': printf("1000"); break; case '9': printf("1001"); break; case 'A': printf("1010"); break; case 'B': printf("1011"); break; case 'C': printf("1100"); break; case 'D': printf("1101"); break; case 'E': printf("1110"); break; case 'F': printf("1111"); break; case 'a': printf("1010"); break; case 'b': printf("1011"); break; case 'c': printf("1100"); break; case 'd': printf("1101"); break; case 'e': printf("1110"); break; case 'f': printf("1111"); break; default: printf("\n Invalid hexa digit %c ", hexa[i]); return 0; } i++; } return 0; } read less
Comments

#include int main(){ int n, i, j, bin_rev=0,bin=0; printf("Enter a number to convert : "); scanf("%d",&n); /*****************************/ i=1; while(n){ bin_rev=bin_rev+(n%2)*i; i=i*10; n=n/2; } i=1; while(bin_rev){ bin=bin+(bin_rev%10)*i; i=i*10; bin_rev=bin_rev/10; ...
read more
#include int main(){ int n, i, j, bin_rev=0,bin=0; printf("Enter a number to convert : "); scanf("%d",&n); /*****************************/ i=1; while(n){ bin_rev=bin_rev+(n%2)*i; i=i*10; n=n/2; } i=1; while(bin_rev){ bin=bin+(bin_rev%10)*i; i=i*10; bin_rev=bin_rev/10; } /*****************************/ printf("nBinary is %d",bin); getch(); return 0; } read less
Comments

Related Questions

How do I get C help in Ubuntu?
Use command line tool 'man'. for example 'man printf' will give you details regarding printf function C
Ashmita
0 0
5
How do I write code in C programming that will invert a string like "Welcome to programming" to “gnimmargorp ot emocleW”?
void main() { char msg = "Welcome to Programming"; char str; int i = 0, j = 0; clrscr(); while (msg != '\0') { if (msg != ' ') { str = msg; j++; ...
Mukul
How is this site helpful for me? I am looking for a job in the field of Programming in C.
C programming is used mostly for developing drivers, embedded softwares, compilers and more importantly the operating systems themselves for example UNIX OS which is completely written in C language. So...
Umang
What is the difference between a string and an array?
String is array of characters terminated with null.
Rakes

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

C++ Program-Working with constant using #define preprocessor
//Header Files #include#include // using #define preprocessor for defining a constant#define len 10#define br 5#define rad 3#define NEWLINE '\n' //Main function void main(){ int area_r; float area_c; //Function...


All About Programming And A Good Programmer.
Hi, This is my first lesson for you guys. Hope you enjoy reading it. In recent community questions, I found many people wanted to be good programmers, or wanted to have good hands on certain language,...

What is a Programming Language
What is a Language? Language is a communication system of human. What is a programming Language? A programming Language is a formal constructed language design to communicate...

Compiler vs Interpreter
Compiler Interpreter Convert all the code into binary format and execute. Convert one statement at a time and execute, then Convert next statement and execute. After conversion, source...

Looking for C Language Classes?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you
X

Looking for C Language Classes?

The best tutors for C Language Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn C Language with the Best Tutors

The best Tutors for C Language Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more