We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1006e40 commit 819bf56Copy full SHA for 819bf56
.vscode/c_cpp_properties.json
@@ -0,0 +1,16 @@
1
+{
2
+ "configurations": [
3
+ {
4
+ "name": "Linux",
5
+ "includePath": [
6
+ "${workspaceFolder}/**"
7
+ ],
8
+ "defines": [],
9
+ "compilerPath": "/usr/bin/clang",
10
+ "cStandard": "c11",
11
+ "cppStandard": "c++14",
12
+ "intelliSenseMode": "linux-clang-x64"
13
+ }
14
15
+ "version": 4
16
+}
P1/makefile
@@ -0,0 +1,3 @@
+run_shell: shell.c
+ gcc shell.c -o shell.o
+ ./shell.o
0 commit comments