Sage Tega pfp
Sage Tega
@sagetega
Okay this is looking good. There’s a lot of difference between Python and C. C got me questioning a lot. Two things: Because of the nature of C, your code has to build and compile before running. The code below is a launch.json file that handles debugs libraries. { "version": "0.2.0", "configurations": [ { "name": "Run C (no debug)", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/clessons", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": true, "MIMode": "lldb", "logging": { "engineLogging": false, "trace": false, "traceResponse": false }, "miDebuggerPath": "/usr/bin/lldb" } ] }
0 reply
0 recast
0 reaction