Leopoldo Luna·Feb 21, 2021Write a blog post describing how object and class attributes work.A class is a custom data type, In python, we can create custom classes that are fully integrated and that can be used just like the…
Leopoldo Luna·Feb 14, 2021Recursion / Recursive FunctionsA recursive function is a function which calls itself.
Leopoldo Luna·Jan 13, 2021Python3: Mutable, Immutable… everything is object!Everything(all values) in Python is an object or a class. What does it mean exactly? Everything is an object in the sense that it can be…
Leopoldo Luna·Dec 15, 2020What’s the difference between static and dynamic libraries?f you create a program in the C programming language, you will most certainly come to appreciate the usefulness of libraries. To simplify…
Leopoldo Luna·Nov 25, 2020What happens when you type ls -l in the shellIn this assignment, you will implement a command line interpreter or, as it is more commonly known, a shell. The shell should operate in…
Leopoldo Luna·Nov 6, 2020How integers are stored in memory?Integers are whole numbers which will be stored in computer using 4 bytes (32 bit) of memory.
Leopoldo Luna·Oct 20, 2020Worst abuse of the C preprocessorIn order to understand the code presented we have to clarify the concept of obfuscation. So the obfuscation in programming is the act of…
Leopoldo Luna·Oct 10, 2020What Do C Static Libraries Have in Common With Your KitchenLet’s dive into a short bit of C source code:
Leopoldo Luna·Sep 29, 2020C Programming: The Four Stages of CompilationThe C programming language, which was created by Dennis Ritchie, is one of the most used programming languages in the world. It is a very…
Leopoldo Luna·Sep 26, 2020What is the difference between a hard link and a symbolic link?Hard links and symbolic links are two different methods to refer to a file in the hard drive. These methods are part of the filesystem…