the C language - 2

logistic_guy

Senior Member
Joined
Apr 17, 2024
Messages
1,269
Fill in the blanks in each of the following sentences about the C\displaystyle \text{C} environment.

a)\displaystyle \bold{a)} C\displaystyle \text{C} programs are normally typed into a computer using a(n) ............ program.
b)\displaystyle \bold{b)} In a C\displaystyle \text{C} system, a(n) ............... program automatically executes before the translation phase begins.
c)\displaystyle \bold{c)} The two most common kinds of preprocessor directives are ............. and ...............
d)\displaystyle \bold{d)} The ................... program combines the output of the compiler with various library functions to produce an executable image.
e)\displaystyle \bold{e)} The ................... program transfers the executable image from disk to memory.
 
a)\displaystyle \bold{a)} C\displaystyle \text{C} programs are normally typed into a computer using a(n) editor program.
 
b)\displaystyle \bold{b)} In a C\displaystyle \text{C} system, a(n) preprocessor program automatically executes before the translation phase begins.
 
c)\displaystyle \bold{c)} The two most common kinds of preprocessor directives are including files and text replacement.
 
d)\displaystyle \bold{d)} The linker\displaystyle \textcolor{blue}{\text{linker}} program combines the output of the compiler with various library functions to produce an executable image.
 
e)\displaystyle \bold{e)} The loader\displaystyle \textcolor{blue}{\text{loader}} program transfers the executable image from disk to memory.
 
Top