From 6d73732c6ca6df5fccc700d1d7a5c6d53c4513e0 Mon Sep 17 00:00:00 2001 From: Vanshika Bongade <vatsalya@n3-94-205.dhcp.drexel.edu> Date: Mon, 13 Jan 2025 19:57:46 -0500 Subject: [PATCH] WEEK-2 --- .vscode/tasks.json | 28 ++++++++++++++++++++++++++++ 0-Warmup/Readme.md | 4 ++++ WEEK-2/Stringfun.c | 0 WEEK-2/makefile | 0 4 files changed, 32 insertions(+) create mode 100644 .vscode/tasks.json create mode 100644 WEEK-2/Stringfun.c create mode 100644 WEEK-2/makefile diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..08d9005 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,28 @@ +{ + "tasks": [ + { + "type": "cppbuild", + "label": "C/C++: gcc build active file", + "command": "/usr/bin/gcc", + "args": [ + "-fdiagnostics-color=always", + "-g", + "${file}", + "-o", + "${fileDirname}/${fileBasenameNoExtension}" + ], + "options": { + "cwd": "${fileDirname}" + }, + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "detail": "Task generated by Debugger." + } + ], + "version": "2.0.0" +} \ No newline at end of file diff --git a/0-Warmup/Readme.md b/0-Warmup/Readme.md index 1170e78..195a62f 100644 --- a/0-Warmup/Readme.md +++ b/0-Warmup/Readme.md @@ -18,7 +18,11 @@ https://gitlab.cci.drexel.edu/vb525/cs503/-/tree/main 4. Briefly describe what you want to get out of this class. + + My goal is to learn more about computer architecture and operating systems, specifically how hardware and software interact. In addition, I want to learn more about Unix tools and scripting, hone my C system programming abilities, and gain hands-on experience with memory management, concurrency, networking, and processes. 5. Briefly describe any concerns you might be having with being successful in this class (if any). + + N/A \ No newline at end of file diff --git a/WEEK-2/Stringfun.c b/WEEK-2/Stringfun.c new file mode 100644 index 0000000..e69de29 diff --git a/WEEK-2/makefile b/WEEK-2/makefile new file mode 100644 index 0000000..e69de29 -- GitLab