How do I code a simple integer circular buffer in C/C++?

Viewed 42938

I see a lot of templates and complicated data structures for implementing a circular buffer.

How do I code a simple integer circular buffer for 5 numbers?

I'm thinking in C is the most straightforward?

Thanks.

4 Answers
Related