answersLogoWhite

0

No, it can be done in C.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you convert binary to hexadecimal using assembly language?

Well, honey, in assembly language, you convert binary to hexadecimal by grouping the binary digits into sets of four, then converting each group into its hexadecimal equivalent. You can use bitwise operations like shifting and masking to make the conversion process smoother. Just remember, in the end, hexadecimal is just a fancy way of saying "base 16."


How can i add Hexadecimal numbers 2E and 34 without converting them into decimal?

To add hexadecimal numbers 2E and 34 without converting them into decimal, you first need to align the numbers by place value. Start from the rightmost digit and add each pair of digits, carrying over if the sum is greater than 15 (F in hexadecimal). In this case, 2E + 34 equals 62 in hexadecimal. The final answer is 62.


Write a program in 8086 assembly language to draw a circle?

You need an 8086 assembly language pencil.


Why there is a need for converting high level language into machine level language............ why cant we use high level language directly in computers?

Machine code is the native language of the machine. The machine does not "understand" any language other than its own native language. As such, all other languages, including low level assembly languages, must be compiled or interpreted in order to produce the required machine code.


What is hexadecimal base 32?

If you need to any information so you can visit.. http://en.wikipedia.org/wiki/Hexadecimal


Can you teach me assembly language programming with 8086 in detail?

No, you need a real teacher, and a textbook.


Why is used assembly language for Tactical Graphics?

Assembly language is used for tactical graphics because it is a quick language, therefore to obtain the quick execution it is used for the purpose of graphics. Assembly language is also used when the designer wants or needs complete control over the application. It is also used in situations where memory is at a premium, or where there is a need for speed and performance. Nadeem Akhtar na_63pk@yahoo.com


What are some examples of assembly level language?

These days very few programs are written in assembly language. Some parts of operating system kernels are written in assembly language usually because they need to perform some function very specific to a particular microprocessor architecture. Other programs written in assembly language include programs written for very cheap microprocessors in embedded systems. Such systems have very little resources and do not run operating system and compilers. Finally some specific parts of applications programs may be written in assembly language for performance optimization, but examples of those today are quite rare indeed.


The minimum number of bits required to store the hexadecimal number FF is?

To store the hexadecimal number FF, we need to convert it to binary first. FF in hexadecimal is equivalent to 1111 1111 in binary, which requires 8 bits to represent. Each hexadecimal digit corresponds to 4 bits in binary, so two hexadecimal digits (FF) require 8 bits to store.


Why be need octal and hexadecimal in the computer?

The reason is computer language at that time was the binary number system which means computer language or computer understandable language .so now the new technology mission is to make the computer brain from the computer language to human understandable language .especially all analogy circuit shuold be change to the digital circuit or digital electronics from the analogy electronic. binary numbers are so difficult to understand by human but machine understand them. human can understand the both hexadecimal and octal numbers than binary. the brain of computer is not like the brain of human so by that way, unless the computer brain shuold look like human brain i means to think and do all things after the decission about all kind of problem. it can be possible whenever the computer understand the higher language without converting to machine language. computer can be work accurately if that problem can be solve. the computer specialists work hard to change the words or language of the machine to the human understandable language. the octal decimal and hexadecimal numbers are understand by human, and store more data or more million of byte than binary numbers .the computer now can be advance unless the machine language change to the higher language not involving of the converter devices. by tut lam ANSWER SIMPLY PUT A BINARY OF DIGITAL 16 IS 1111THAT IS WHAT COMPUTER WORKS WITH AND UNDERSTAND. A BIGGER NUMBER1000101110001 BECOMES UNFRIENDLY TO US OCTAL WILL BE 16501 IN HEX IT BECAME 1711 BASICALLY OCTAL ARE 3 GROUP HEX 4 GROUP OF NUMBERS


Under what circumstances if any do you consider programming in machine language?

Assembly language is typically used whenever a high level language is incapable of producing the desired machine code. For example, C++ is specifically designed such that you rarely need to use a lower level language such as C or assembly. However, sometimes you need a very specific piece of machine code in order to attain the highest possible performance from a particular piece of hardware and, if the compiler cannot produce it for you, you must craft it by hand instead.


Why is assembly language called a low level language?

x86 assembly language is crucial to be able to do any serious security or reverse engineering work. In addition, it allows one to write well optimized code. It also gives the opportunity to understand how things really work inside the computer, which is by itself very important if you want to become a competent programmer. x86 assembly language is not very hard to learn. In fact, if you know basic math (The one that you learn in elementary school), you could learn it yourself. I recorded an online video course for x86 assembly (paid) and exercises (Open source). You can find it at the address xorpd dot net. This course will teach you x86 assuming that you know nothing. It only assumes that you know how to add numbers. (In base 10). In the end of the course you will be able to write fully working x86 assembly programs on the Fasm assembler over the Windows operation system. xorpd.