Find why the branch does not report a negative balance.
C
#include <stdio.h>
int main(void) {
int balance = -1;
unsigned int minimum = 1;
if (balance < minimum) {
puts("below minimum");
} else {
puts("not below minimum");
}
return 0;
}