// the find
k1rthan/e-platform
Simple E-Commerce Platform using C that can add ,delete and change quantity and print invoice (bill)
A console-based e-commerce simulation written in C for a college mini-project. It handles basic cart operations and invoice printing using file I/O or in-memory structs. This is a student exercise, not a usable system.
- Gets the job done as a learning exercise — covers structs, loops, and basic I/O in C
- Single-file implementation keeps it easy to read and trace end-to-end
- Zero stars, zero forks, last touched 2023 — no community and no maintenance
- No header files, no modularization — everything in main.c means this doesn't scale past a class assignment
- No persistence layer beyond what's in memory during a single run (likely)
- C is the wrong language for e-commerce tooling in 2023; there's no reason to reach for this over any modern alternative