Divides x by y and returns the remainder.
The arithmetic is same with Excel, but not same with c/c++.
int mod2( int x, int y )
remainder of division of x by y
EX1
void mod2_ex1() { out_int("", mod2(-72, 256)); // 184 }
mod, rmod
origin.h