The program that converts the target program (.OBJ) into an executable file (.EXE) is called a linker.
The obj file refers to the intermediate code file generated when the program is compiled.
The target file is usually a binary file compiled by the program, and then linked through the linker and resource files to become an exe file.
OBJ only gives the relative address of the program, while EXE is the absolute address.
The above is the detailed content of What is the program called that converts obj to exe?. For more information, please follow other related articles on the PHP Chinese website!