Skip to content

Instantly share code, notes, and snippets.

View abhi5hek001's full-sized avatar
🎯
Focusing

Abhishek Sahay abhi5hek001

🎯
Focusing
View GitHub Profile
@abhi5hek001
abhi5hek001 / gist:66f2f3fd66bc41b571b37b7791333315
Created January 24, 2025 20:31
tasks.json for code runner
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
@abhi5hek001
abhi5hek001 / gist:ceecd99665bf3b8d67fa64ee5889b490
Created January 24, 2025 20:39
launch.json for code runner
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/a.out",
"args": [],
"stopAtEntry": false,