{
// 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": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "enter program name, for example ${workspaceFolder}/a.out",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "gcc build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "gcc build active file",
"miDebuggerPath": "/usr/bin/gdb"
}
]
Code Example |
---|
Cpp :: loop through array c++ |
Cpp :: rotate array cpp |
Cpp :: throw exception c++ |
Cpp :: how to remove a index from a string in cpp |
Cpp :: To Lower Case leetcode solution in c++ |
Cpp :: case label in c++ |
Cpp :: overload of << c++ |
Cpp :: c++ fstream create if not exists |
Cpp :: change colour of output to terminal c++ |
Cpp :: C++ Vector Operation Add Element |
Cpp :: bubblesort c++ |
Cpp :: c++ get line |
Cpp :: what is - in c++ |
Cpp :: how to delete a node c++ |
Cpp :: odd numbers 1 to 100 |
Cpp :: c++ capture screen as pixel array |
Cpp :: new line in c++ |
Cpp :: how can we create 4 digit random number in c++ |
Cpp :: stack c++ |
Cpp :: gcc suppress warning inline |
Cpp :: c++ convert const char* to int |
Cpp :: create matrix cpp |
Cpp :: initialize vector |
Cpp :: template c++ |
Cpp :: calculator in cpp |
Cpp :: find pair with given sum in the array |
Cpp :: find text in string c++ true false |
Cpp :: loop execution descending order in c++ |
Cpp :: how to make loop in c++ |
Cpp :: potato |