commit b3de29dc397d4427e62e459de9a36e055dfabcbd
parent b4c0e5616246ad0729a5063ce70a9420e09661b8
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Wed, 3 Sep 2025 20:08:51 +0530
Update README.md
Diffstat:
| M | README.md | | | 55 | ++++++++++++++++++++++++++++++++++++++++++++++++++++--- |
1 file changed, 52 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -1,5 +1,54 @@
+# π B.Sc. CS Hons β Practice Programs
+
+This repository contains **all C programs, executables, and snapshots** as per the **West Bengal State University B.Sc. Computer Science (Hons) syllabus**.
+Itβs designed to help students easily access, run, and understand each program.
+
+---
+
+## π Contents
+
+* β
C Source Codes (`.c`)
+* β‘ Executables (`.exe`)
+* πΌοΈ Snapshots (screenshots of code & output)
+
+---
+
+## π How to Run
+
+```bash
+# Compile using GCC
+gcc program.c -o program.exe
+
+# Run the executable
+./program.exe
```
-Sorry, I don't know how make a cool README.md.
-If you know, please upload the code in the Issues section.
-Thank you!!
+
+### π Example Program (Factorial)
+
+```c
+#include <stdio.h>
+int main() {
+ int n, fact = 1;
+ printf("Enter a number: ");
+ scanf("%d", &n);
+ for(int i=1; i<=n; i++) {
+ fact *= i;
+ }
+ printf("Factorial = %d", fact);
+ return 0;
+}
```
+
+π **Website**
+For a better browsing experience, visit the GitHub Pages version of this repository:
+π [notamitgamer.github.io/bsc](https://notamitgamer.github.io/bsc)
+
+---
+
+## π¨βπ» Author
+
+### Amit Dutta
+
+* π§ **amitdutta4255@gmail.com**
+
+* π [**GitHub Profile**](https://github.com/your-profile)