ASSERT (3) Linux Manual Page
assert – abort the program if assertion is false Synopsis#include <assert.h> void assert(scalar expression);DescriptionThis macro can help programmers find bugs in their programs, or handle exceptional cases via a crash that will produce limited debugging output. If expression is false (i.e., compares equal to zero), assert() prints an error message to standard error and terminates…
