From a0c7ab62c0fcf1aabb22aabb19c88a5d2d9aa47b Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Wed, 4 Sep 2024 14:58:35 -0600 Subject: [PATCH] vault backup: 2024-09-04 14:58:35 --- .../software development/ECE1400/Compilation Steps.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 education/software development/ECE1400/Compilation Steps.md diff --git a/education/software development/ECE1400/Compilation Steps.md b/education/software development/ECE1400/Compilation Steps.md new file mode 100644 index 0000000..c0cddb0 --- /dev/null +++ b/education/software development/ECE1400/Compilation Steps.md @@ -0,0 +1,11 @@ +1. Preprocessing: The preprocessor obeys commands that begin with #, also known as directives +Commands for the preprocessor are called directives. +Ex + + + +2. Compiling. A compiler translates then translates the program into machine instructions. +3. Linking: The generated objects are combined to create a complete executable. + +The preprocessor is typically integrated with the compiler. +