How do I convert C code to application of or compile

  • 2020-04-02 01:12:28
  • OfStack

C language is a high-level language, its grammar is close to the human natural language, but more rigorous than the natural language. Computers can't run the code of C language directly. They don't know what C language is. In fact, computers only process their machine language.

1. The compiler

A compiler is the "translator of an article" that translates (actually compiles) it into a machine language after we've finished authoring it.

2. The interpreter

Interpreters are "walk-ins," which work as the code runs. BASIC USES an interpreter, which is considered inefficient.

C language to ask the first translation, to want the C language code to execute, please ask it to help you translate into machine language. Common C language compilers are: Turbo C\ win-tc \ c-free \Visual C++6, to know how to use them, you can go to the relevant manuals.

Related articles: