A simple space for experimenting with small C programs, testing snippets, and exploring language features. This repo is meant for quick trials, not polished projects.
- Minimal structure
- Lightweight C experiments
- Optional Makefiles
- Room for standalone .c files and small modules
- Clone the repo
git clone https://github.com/QuantumJunction/CPlayground.git
cd CPlayground- Compile a C file
gcc scratch/<file>.c -o <file>
./<file>- Build via Make (if provided)
make -C experiments/<project>//
├── experiments/ # Small isolated C projects
│ ├── exp1/
│ │ ├── main.c
│ │ └── Makefile
│ └── exp2/
├── scratch/ # Standalone .c files
├── utils/ # Reusable helpers
├── LICENSE
└── README.md- Keep experiments isolated
- Remove what you don't need
- Reusable helpers go to utils/