From 6a444b4960a271e3416242bf59b42527b05ded3a Mon Sep 17 00:00:00 2001
From: antux18 <antux18@gmail.com>
Date: Wed, 20 Mar 2024 11:06:09 +0100
Subject: [PATCH] Fin t4.

---
 ex1/Exercise_1_Task_4 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ex1/Exercise_1_Task_4 b/ex1/Exercise_1_Task_4
index d6fa670..3284057 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.
-- 
GitLab