1.

What Do You Mean By Translation Unit?

Answer»

A Translation Unit is a set of SOURCE files that is seen by the COMPILER and it translate it as one unit which is generally.FILE and all the header files mentioned in #include directives.

When a C preprocessor expands the source file with all the header files the result is the preprocessing translation unit which when further processed translates the preprocessing translation unit into translation unit, further with the help of this translation unit compiler forms the object file and ultimately forms an EXECUTABLE PROGRAM.

A Translation Unit is a set of source files that is seen by the compiler and it translate it as one unit which is generally.file and all the header files mentioned in #include directives.

When a C preprocessor expands the source file with all the header files the result is the preprocessing translation unit which when further processed translates the preprocessing translation unit into translation unit, further with the help of this translation unit compiler forms the object file and ultimately forms an executable program.



Discussion

No Comment Found