// the find
lucasMontagnani/Pseudo-eCommerce_C
Um marketplace na linguagem C, contendo duas interfaces (ADM/Cliente).
A console-based e-commerce simulation written in C as a university structured programming final project. It implements two menu-driven interfaces (customer and admin) with in-memory inventory management and a shopping cart. This is a student exercise, not a production tool.
Covers the core CRUD loop (add, update, list, purchase) in a single-file C program, which is a reasonable scope for a structured programming assignment. Includes separate admin and customer flows, showing basic access separation. Has a shopping cart with purchase history, which goes beyond the minimal expected scope for this kind of coursework.
Everything is single-file (main.c) with no separation of concerns — data structures, UI, and logic are all tangled together. No persistence whatsoever; all inventory and history vanishes when the process exits. Last touched September 2021 and has zero stars or forks, so it is effectively abandoned. The README is in Portuguese and targets a local IDE setup with no build instructions, making it hard to run for anyone outside the original course context.