Skip to content

QuantumJunction/CPlayground

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C-Playground

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.

Features

  • Minimal structure
  • Lightweight C experiments
  • Optional Makefiles
  • Room for standalone .c files and small modules

Getting Started

  1. Clone the repo
git clone https://github.com/QuantumJunction/CPlayground.git
cd CPlayground
  1. Compile a C file
gcc scratch/<file>.c -o <file>
./<file>
  1. Build via Make (if provided)
make -C experiments/<project>/

Structure

/
├── experiments/          # Small isolated C projects
│   ├── exp1/
│   │   ├── main.c
│   │   └── Makefile
│   └── exp2/
├── scratch/              # Standalone .c files
├── utils/                # Reusable helpers
├── LICENSE
└── README.md

Guidelines

  • Keep experiments isolated
  • Remove what you don't need
  • Reusable helpers go to utils/

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published