En Route to Becoming a Vulnerability Researcher Day 1: Writing my first C programs and learning why printf is a weapon
dev.to
** What I Did Today Today was day one of my C learning journey using the K&R book, the same book written by the people who created the language. I set up my working directory in WSL2 Ubuntu and wrote my first three C programs from scratch, typed out manually, compiled, and run in the terminal. Program 1: Hello World The classic first program. Learned that #include pulls in the standard library, that main() is where execution begins, and that even this innocent six line program triggers ove