Search code examples
language-agnosticprogramming-languagesassembly

Language translators: Anything to Assembly


Im just curious if there is is any sort of program/application out there that will allow to enter code in one language and translate that to another language such as asm. This seems perfectly possible....so does anything like this exist?


Solution

  • Yes. They are called compilers.

    Compilers are just one example of a class of programs called language-translators.

    Compilers convert higher-level languages, such as C++ and Java into lower-level languages, including virtual machine byte-codes, assembly, C, or directly into machine-runnable object-code.