tp1 partie 1 et partie 2.1/2.2

This commit is contained in:
Kennro03
2025-10-14 17:21:26 +02:00
parent 30458c5907
commit b88b6e9b9d
26 changed files with 414 additions and 0 deletions

24
pendu/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "C/C++ Runner: Debug Session",
"type": "cppdbg",
"request": "launch",
"args": [],
"stopAtEntry": false,
"externalConsole": true,
"cwd": "c:/Users/kennr/Downloads/pendu",
"program": "c:/Users/kennr/Downloads/pendu/build/Debug/outDebug",
"MIMode": "gdb",
"miDebuggerPath": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}