CS208 Introduction to Computer Systems Friday, 12 January 2024 + Questions + Debugging in VS Code - Fire up VS Code - Connect to mantis - Open up the "Debugging in VS Code" link from the course page - Step through the lab together + Dynamic memory allocation - Why? - General structure - figure out how much space you need - malloc it - use it - free it - Compare to python name = input('Type your name: ') that is, python does all the dynamic memory allocation for you, and the freeing of that memory, too. + Linked list? [we got a little bit started here]