C

  • Understanding Web Dev for Systems Developers

    Understanding Web Dev for Systems Developers

    A first-principles orientation and explanation for old-school system and scripting developers to understand web development and frameworks. C developers and other system language developers have grown up with a clear understanding that code does not just run and must be converted from the programming language to machine language, with various intermediate forms of code,…

  • How to write recursive functions

    Recursion is a powerful concept in programming, and it can make code easy to read and understand. This tutorial takes a non-recursive function and re-writes it as a recursive function. These are written in C#, but are compatible with C++ and C. The only difference is that you would use cout << number for…