underflow-detection
There are 5 repositories under underflow-detection topic.
LLNL/FPChecker
A dynamic analysis tool to detect floating-point errors in HPC applications.
keithpl/checked-int
A small single-header library to detect integer overflow/underflow before it happens.
sanjanatg/Queue-implemented-using-singly-Linked-list-in-C.
The C code implements a queue data structure using a singly linked list. It allows users to enqueue elements to the rear of the queue, dequeue elements from the front, and display the queue. Error handling for queue overflow and underflow is included
sanjanatg/Stack-implementation-using-Singly-linked-list-in-C.
The C code implements a stack using a linked list. It allows users to push, pop, and display elements in the stack. Error handling for overflow and underflow is included.