answersLogoWhite

0

sscanf, atoi, strtol, ...

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Write a program of binary heap in c or c language?

to implement operations on binary heap in c


What does B C D stand for in math?

Binary coded decimal. Each decimal digit is represented by its binary equivalent.


How do you write a c program to convert binary to decimal by using while statement?

write a c++ program to convert binary number to decimal number by using while statement


Conversion of octal to decimal in c?

Possible.


What are the examples of middle level programming language?

binary language


How do you convert a binary number into a decimal in C?

sprintf (to, "%d", value)


What is the 4-binary number assoiated with the hexadecimal symbol C?

0xc = 1100 Hexadecimal digits use exactly 4 binary digits (bits). The 0x0 to 0xf of hexadecimal map to 0000 to 1111 of binary. Thinking of the hexadecimal digits as decimal numbers, ie 0x0 to 0x9 are 0 to 9 and 0xa to 0xf are 10 to 15, helps with the conversion to binary: 0xc is 12 decimal which is 8 + 4 → 1100 in [4 bit] binary.


What is Compilation Process?

In simple words, it is the conversion of a high level language to an assembly level language. In C, it is the conversion of a .c file to a .s file


Write a program in C to convert a binary number to its decimal equivalent?

#include#includemain(){int i,j=0,k;printf("enter u r binary number");scanf("%d",&i);while(i>0){k=i/10; // reminderi=i%10;// for dividentj=j+(k*pow(2,k));conversion function}printf("decimal number is :%d",j);}


How is the code return in higher programming languages like C and C converted into binary language?

By using a compiler.


How many types of c language files are there?

ASCII and BINARY are the basic classifications of files


What is difference between C language and binary language?

Technically speaking, there is no "binary language" in computing. C is a programming language which involves a compiler (which creates an object file) and a linker (which combines one or more object files and libraries into an executable file). There are programs which interpret C programs and run them instead of compiling them - these are C interpreters. Binary is a numbering system, like decimal. Decimal is base 10 - each digit ranges from 0 to 9. The base is also called a "radix". Binary, on the other hand, is base 2, as each digit ranges from 0 to 1. Binary is used by computers because electronics rely voltages, which are easily processed by electronics as "on" and "off". Chips can process "groups" of these voltage differentials in multiples of 8. In the early 1980's, computers were 8-bit, so the processors handled information 8 bits at a time. Today, computers use groups of 32 or 64 bits to process data.