Our Blog
Latest Blog & Articles
Why Your C Functions Aren’t Updating Your Variables (And How to Fix It)
Functions are critical for any C program. We have the main function where the program starts, and then we have different functions to do different types of operations. Whenever we want to do those different types of operations, we can just call a function. Functions are useful because you can pass a variable to them,…
How to Debug Segmentation Faults in C: 3 Common Causes and How to Fix Them
When my friends and I were first learning how to code in C, we actually liked compiler warnings and compile errors. That might sound strange, but when we got a warning or compile error, it usually gave us an idea of what was wrong with our code. We knew where to start looking. The error…
Why I Think You Should Learn C Before Python
Something that I always tell aspiring programmers is that they should learn C first before learning Python. And I know that goes contrary to a lot of conventional wisdom. A lot of people who are trying to learn how to program are told to learn Python first because Python can help them build some cool…