Mark Kevin BaltazarC Language — How to implement PolymorphismPolymorphism is an important part of many design patterns. In most languages that supports OOP this is commonly done through the use of an…Feb 27, 20211Feb 27, 20211
Mark Kevin BaltazarLet’s Make a Dynamic Array (Vector) in CIn this post we will implement a dynamic array similar to the ones seen in other programming languages like the std::vector in C++ and…Mar 21, 2020Mar 21, 2020
Mark Kevin BaltazarLet’s make a Filter Function in CIf you have done some web development and worked with javascript, chances are you have come across a very useful function for manipulating…Oct 27, 20191Oct 27, 20191
Mark Kevin BaltazarC Header Files and PrototypesIn this post I’ll be talking about function prototypes, header files, and how to break c programs to separate files.Mar 31, 20192Mar 31, 20192
Mark Kevin BaltazarHow to Compile, Link and Build a C Program Using GCCPrerequisites: - gcc is installed in your machine - gcc is registered to PATH - familiarity with some basic terminal commands since gcc is…Mar 30, 20191Mar 30, 20191