diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-11-12 09:23:19 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-11-12 09:23:19 +0200 |
| commit | dbaf69f0e0ede46cbf5765cb6ca9500fcd7a3ea7 (patch) | |
| tree | 42890f66de25479419a2be48af695f79be7c155d | |
| parent | da0cd9df96b09425416869e819af9633866374ab (diff) | |
| download | algorithms-dbaf69f0e0ede46cbf5765cb6ca9500fcd7a3ea7.tar algorithms-dbaf69f0e0ede46cbf5765cb6ca9500fcd7a3ea7.tar.gz algorithms-dbaf69f0e0ede46cbf5765cb6ca9500fcd7a3ea7.zip | |
Divided C and C++ files into seperate folders
| -rw-r--r-- | C++/FindSpiralNumber.cpp (renamed from C_C++/FindSpiralNumber.cpp) | 0 | ||||
| -rw-r--r-- | C++/FindSpiralNumberCoord.cpp (renamed from C_C++/FindSpiralNumberCoord.cpp) | 0 | ||||
| -rw-r--r-- | C++/LeibnizPI.cpp (renamed from C_C++/LeibnizPI.cpp) | 0 | ||||
| -rw-r--r-- | C++/QuadraticEquationGrapher.cpp (renamed from C_C++/QuadraticEquationGrapher.cpp) | 0 | ||||
| -rw-r--r-- | C++/README.md | 4 | ||||
| -rw-r--r-- | C/IsPrime.c (renamed from C_C++/IsPrime.c) | 0 | ||||
| -rw-r--r-- | C/README.md | 4 | ||||
| -rw-r--r-- | C_C++/README.md | 9 |
8 files changed, 8 insertions, 9 deletions
diff --git a/C_C++/FindSpiralNumber.cpp b/C++/FindSpiralNumber.cpp index 78e1681..78e1681 100644 --- a/C_C++/FindSpiralNumber.cpp +++ b/C++/FindSpiralNumber.cpp diff --git a/C_C++/FindSpiralNumberCoord.cpp b/C++/FindSpiralNumberCoord.cpp index 07b2071..07b2071 100644 --- a/C_C++/FindSpiralNumberCoord.cpp +++ b/C++/FindSpiralNumberCoord.cpp diff --git a/C_C++/LeibnizPI.cpp b/C++/LeibnizPI.cpp index 2243f61..2243f61 100644 --- a/C_C++/LeibnizPI.cpp +++ b/C++/LeibnizPI.cpp diff --git a/C_C++/QuadraticEquationGrapher.cpp b/C++/QuadraticEquationGrapher.cpp index 7dfbe64..7dfbe64 100644 --- a/C_C++/QuadraticEquationGrapher.cpp +++ b/C++/QuadraticEquationGrapher.cpp diff --git a/C++/README.md b/C++/README.md new file mode 100644 index 0000000..4e4244f --- /dev/null +++ b/C++/README.md @@ -0,0 +1,4 @@ +Building a file: +```bash +gcc -o program.out -lstdc++ FILE.cpp && ./program.out +``` diff --git a/C_C++/IsPrime.c b/C/IsPrime.c index c7c7630..c7c7630 100644 --- a/C_C++/IsPrime.c +++ b/C/IsPrime.c diff --git a/C/README.md b/C/README.md new file mode 100644 index 0000000..08e6cde --- /dev/null +++ b/C/README.md @@ -0,0 +1,4 @@ +Building a file: +```bash +gcc -o program.out -lm FILE.c && ./program.out +``` diff --git a/C_C++/README.md b/C_C++/README.md deleted file mode 100644 index 2b06067..0000000 --- a/C_C++/README.md +++ /dev/null @@ -1,9 +0,0 @@ -Building the C++ files: -```bash -gcc -o program.out -lstdc++ FILE.cpp && ./program.out -``` - -Building the C files: -```bash -gcc -o program.out -lm FILE.c && ./program.out -``` |
