1
0
forked from 131/lab5_ivec

add vector.c template, update makefile, add readme.txt

This commit is contained in:
dzruyk
2022-04-16 03:24:45 +03:00
parent b3fa16be00
commit 3904906621
5 changed files with 196 additions and 0 deletions

14
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "C/C++: gcc build",
"command": "make",
"problemMatcher": [
"$gcc"
],
"group": "build",
}
]
}