Submit and pass all tests to enable saving to GitHub.
Implementation
Why This Matters
False sharing is a real, silently catastrophic bug: Java added the @Contended annotation and the LMAX Disruptor pattern pads its ring-buffer cursors specifically to prevent it, and the Linux kernel's per-CPU variables are deliberately cache-line-aligned for the same reason. Any multi-threaded counter or lock-free data structure that ignores this, from database engines to game engines, can silently lose 10-20x throughput exactly as you measure here.
Hints
0 / 3 revealed
Sample validation
Sample case for Run. Submit grades this sample plus all hidden tests.
main.c
Workspace 1.0
Demonstrate false sharing and cache coherency overhead.