I had been using "make" to save my source code (I had been using an online IDE which had "make" available to me) and compile it all in one, but when I moved to a local version of VS Code, I found that "make" did not work without installing it (I was prompted to install it).
This got me wondering if there is any smaller (i.e. less inclusive?) command that just or pretty much just saves source code, which I can use prior to using "cc" to compile in the terminal, rather than using "make" to both save changes to my source code and then compile it (I assume "make" saves and compiles the source code given that I did not have to manually save changes to my source code when using an online version of VS Code, as I do now using VS Code locally).
As of right now I am just manually saving via VS Code using the GUI, but I'd like to find a way to do this just in the terminal. If I just use "cc" after making changes to my source code, it just compiles the previously saved version (which was saved using the GUI and not the terminal).
Thank you!