aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--C_C++/README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/C_C++/README.md b/C_C++/README.md
new file mode 100644
index 0000000..4c69d49
--- /dev/null
+++ b/C_C++/README.md
@@ -0,0 +1,9 @@
+Building the C++ files:
+```bash
+gcc -o program.out -lstdc++ FILE.cpp && ./program.out
+```
+
+Building the C files:
+```bash
+gcc -o program.out FILE.c && ./program.out
+```