answersLogoWhite

0

How compiler do compilation?

User Avatar

Anonymous

13y ago
Updated: 9/17/2019

Use a compiler program, such as bcc, gcc, javac, etc.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the purpose of compilation?

To compile a compiler perhaps?


What are the programs that are executing during compilation in c?

The only program that executes during compilation is the compiler. The compiler produces one object file for each translation unit compiled. When all translation units are compiled, the object files can then be linked together by executing the linker.


If during compilation in CC compiler changes the name of the function ie func to 2314ufdifunc what to do so that the compiler will use the same name given by the user?

set the environment variables CC=gcc export CC then it takes the compiler as gcc


What is an antonym for the word compile?

The noun forms for the verb to compile are compiler, compilation, and the gerund, compiling.


What is the Byte code definition?

Java compiler produces an intermediate code after compilation, understandable by JVM is called Byte Code.


How many levels of compilation happens in NET Framework?

In the .NET Framework, there are primarily two levels of compilation: source code compilation and Just-In-Time (JIT) compilation. First, the source code is compiled into an Intermediate Language (IL) by the C# (or other .NET language) compiler. Then, at runtime, the JIT compiler translates the IL code into native machine code specific to the operating system and hardware architecture being used. This two-step process allows for platform independence and optimization during execution.


What is the difference between initialisation and definition in C programming?

Variable-declaration is: extern int x; extern double y; extern char a; Variable-definition is: int x; static double y; auto char a; Variable-definition with initialization is: int x = 1; static double y= 2.3; auto char a = 'w';


Why wont your C plus plus programs compile?

C++ programs won't compile if they contain compiler errors. The compiler will tell you precisely where the error is, and the type of error, unless the error is in a macro. The compiler cannot see macro definitions because they are inline expanded prior to compilation.


Are programs that translate the source code to object code?

False. A compiler converts source code into object code.


What is linking in C programming?

Linking comes after compilation. The object files produced by the compiler are essentially linked together to create the final executable. Object files are merely the machine code representations of the translation units processed by the compiler.


How can you turn a C plus plus program into a dot exe to run on a PC without a compiler?

To make C++ code into an executable program, you need a compiler. Compilation of a program doesn't have to be on the same computer as the one it's intended to be used on.


When the compiler detects an error in the source should it halt?

When a compiler detects an error in the source code, it generally halts the compilation process to prevent the generation of incorrect or incomplete executable code. This allows developers to address the errors before proceeding. However, some compilers can provide warnings for non-fatal issues while continuing the compilation, allowing for a more comprehensive analysis of the code. Ultimately, whether to halt or continue depends on the severity of the errors and the specific compiler's design.