commit debc8d0d3d9c6edb1a148e7abeddf2f73d4e722a parent 964f4b97fa1168561ef8dccb0627ab1f8c9d55cc Author: Amit Dutta <amitdutta4255@gmail.com> Date: Tue, 23 Sep 2025 13:19:02 +0530 Update Readme.md Diffstat:
| M | tution-c/Readme.md | | | 50 | +++++++++++++++++++++++++++++++++++++++++++++++++- |
1 file changed, 49 insertions(+), 1 deletion(-)
diff --git a/tution-c/Readme.md b/tution-c/Readme.md @@ -1 +1,49 @@ -hello +# `tution-c` Folder + +This folder contains C programs written as part of my tuition classes. The file naming convention is designed to help me and anyone else easily identify the source of each program. + +## File Naming Convention + +Each C program file (`.c`) is prefixed to indicate its origin: + +- **`APC-S`**: Programs from Soumi Madam's class. + +- **`APC-SPS`**: Programs from SPS Sir's class. + +- **`APC-PRAC`**: Programs from the practical lab sessions. + +- **`P`**: Programs from my private tuition class (Eduincs). + +## How to Compile and Run + +To compile and run any of these programs, you can use a C compiler like GCC. + +1. **Open your terminal or command prompt.** + +2. **Navigate to the `tution-c` directory:** + + ``` + cd tution-c + ``` + +3. **Compile the program:** + + ``` + gcc filename.c -o filename.exe + ``` + + (Replace `filename.c` with the actual file name, e.g., `APC-S-001.c`) + +4. **Run the executable:** + + ``` + ./filename.exe + ``` + + (Replace `filename.exe` with the name of the executable you just created.) + +--- + +## License + +All programs in this repository are licensed under the MIT License. You can find the full license details in the [main `LICENSE` file](https://www.google.com/search?q=../LICENSE).