Category: Uncategorized

  • How To Use the Debugger in Visual Studio Code in C on a Mac

    Something every developer will face is a bug, and what better way to get rid of bugs than with using a debugger? What is a debugger? A debugger is just a development tool that you can use to pause your program at a certain line of code. Then, you can step through your program line…

    Read More

  • What I Would Do Differently if I Had To Start Over (Coding Journey)

    What would I do differently if I had to start my coding journey all over from the beginning? I’ve thought about this question, and I think it’s a really helpful one because it can provide insight into what you can do differently from the beginning of your coding journey. This way, you can avoid making…

    Read More

  • Don’t Make This Common Scanf Mistake!

    So there’s this common ‘scanf’ or ‘getchar’ mistake that a lot of beginners make when first starting to learn how to code in C. These two C functions are common functions that beginners learn to handle basic user input for their programs. These mistakes are pretty understandable. Even I myself have made this mistake in…

    Read More