I'm about to start learning C and chose VS Code with GCC as my compiler. I added a hello world program to test it out and I get the following popup:
I have zero experience with any of this so I would greatly appreciate the help. I followed the Open launch.json option and did not understand how that was relevant to my problem. It gave me the following:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "enter program name, for example ${workspaceFolder}/a.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false
}
]
}
I have no clue what to do. I tried looking through StackOverflow for similar problems and have had no success.