Operasi biner pada struct c

// TLDR you can't use ==, >, <, >= and Co. on custom structs in C
// (you'll need C++ for that)
Thoughtful Trout