bsc

Comprehensive codebase and cou...
Log | Files | Refs | README | LICENSE

commit b3de29dc397d4427e62e459de9a36e055dfabcbd
parent b4c0e5616246ad0729a5063ce70a9420e09661b8
Author: Amit Dutta <amitdutta4255@gmail.com>
Date:   Wed,  3 Sep 2025 20:08:51 +0530

Update README.md
Diffstat:
MREADME.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)
Β© notamitgamer β€’ Site Built: 2026-07-21 13:58:23 UTC β€’ git-mirror commit: 1037f62 [view raw info]
Originally created with stagit β€’ modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror