diff options
Diffstat (limited to 'C_C++/README.md')
| -rw-r--r-- | C_C++/README.md | 9 |
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 +``` |
