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

What is the meaning of \n and \t in C language?
(New line) -- We use it to shift the cursor control to the new line. \t (Horizontal tab) -- We use it to shift the cursor to a couple of spaces to the right in the same line.
Munawar
0 0
5
What is C? Where it is used ?
C has the advantage that it is a relatively small language, which makes it easy to implement a C compiler (whereas a C++ compiler is a monster to write), and makes it easier to learn the language. C...
Chandi
How can I write a C program to print a name without using a semicolon?
void main() { if(printf("Your Name")) { } }
Anand
0 0
6
Is it necessary for a programmer to start his career by learning the C language first?
Not necessarily to learn C language, but if you learn C langauge it is easy to grasp other proramming languages.
Shilpa

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

Ask a Question

Related Lessons

Why Indexing Should Start From Zero In Array ?
Why numbering should start at zero? To denote the subsequence of natural numbers 2, 3, ..., 12 without the pernicious three dots, fourconventions are open to usa) 2 ≤ i < 13b) 1 < i ≤ 12c)...

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...

Storage classes in c
Storage classes determine the scope and life time of a variable. Scope is defined as the region over which the defined variable is accessible. Lifetime is the time during which the value of a variable...

Advantages of C++ Language
Advantages of C++ - C++ is a profoundly convenient dialect and is frequently the dialect of decision for multi-gadget, multi-stage application advancement. - C++ is a protest situated programming dialect...

Static and dynamic libraries
A library is a package of code that is meant to be reused by many programs. A static library (also known as an archive) consists of routines that are compiled and linked directly into your program. When...

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