Write 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…Feb 21, 2021Feb 21, 2021
Recursion / Recursive FunctionsA recursive function is a function which calls itself.Feb 14, 2021Feb 14, 2021
Python3: 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…Jan 13, 2021Jan 13, 2021
What’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…Dec 15, 2020Dec 15, 2020
What 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…Nov 25, 2020Nov 25, 2020
How integers are stored in memory?Integers are whole numbers which will be stored in computer using 4 bytes (32 bit) of memory.Nov 6, 2020Nov 6, 2020
Worst 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…Oct 20, 2020Oct 20, 2020
What Do C Static Libraries Have in Common With Your KitchenLet’s dive into a short bit of C source code:Oct 10, 2020Oct 10, 2020
C 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…Sep 29, 2020Sep 29, 2020
What 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…Sep 26, 2020Sep 26, 2020