Question: C language supports five suffixes:.,.,.,.o, and .out. Name the five programs used to go from source code to execution. Description Program Name 1. This program

C language supports five suffixes:.,.,.,.o, and .out. Name the five programs used to go from source code to execution. Description Program Name 1. This program removes comments, replaces #define values with their values, selects code to include based on any #ifdef and #ifndef statements, and replaces __LINE__ with the actual line number, and __FILE__ with the file name in your code. 2. This program converts the intermediate file into another programming language or into assembly language. For C code, this program generates the c.s assembly code. 3. This program converts assembly language into machine language code. For C code, the c.o file contains the machine language code. 4. This program combines one or more .o files, any libraries specified, and creates an executable file which you can run. For C code, the default name is a.out representing the absolute object file. 5. This program is used when you run your program. It can combine your executable file with shared object files (.so files).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!