Question:

Miracle C and Turbo C -create exe file

by  |  earlier

0 LIKES UnLike

Miracle C and Turbo C both compile the sorce file without error but fail to mcreate and save an exe file.

 Tags:

   Report

1 ANSWERS


  1. Making an .exe file is a 2 step process.  First, you compile the text source code, which converts the source file(s) into an .obj file.  Second, you use a linker to convert the .obj file into an .exe file.

    Usually when you get a linker error, it means that you are missing additional support .obj files or a library.  Either you did not specify the required files to the linker, or the linker can't find the required modules.

    Perhaps you should show us the linker errors that you've been getting.

Question Stats

Latest activity: earlier.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.