diff --git a/ex1/Exercise_1_Task_4 b/ex1/Exercise_1_Task_4 index d6fa670666f5e2f8927b5011e82bfbebd7381183..3284057f4b22a8aba674b60b6d3e056d156e0f3a 100644 --- a/ex1/Exercise_1_Task_4 +++ b/ex1/Exercise_1_Task_4 @@ -1,3 +1,3 @@ -Compiling translates C code into object code without including the code of functions and variables from external libraries (such as stdio or stdlib) and files. +Compiling translates the C code from C files individually into object code without linking functions and variables from external libraries (such as stdio or stdlib). -Linking will take all the previously created object code files and combine them together, along with the code of functions and variables from external libraries, resulting in a working executable file. \ No newline at end of file +Linking will take all the previously created object files, combine them together and link variables and functions that come from external libraries, thus resolving unresolved external references.