Divides x by y and returns the remainder.
The arithmetic is same with c/c++, but not same with Excel.
long mod( long x, long y )
remainder of division of x by y
EX1
void mod_ex1() { int m = 36, n = 10; long nmod = mod(m, n); printf("mod(%d, %d) = %d\n", m, n, nmod); }
rmod, mod2
origin.h