Hi all,
the following are the relations involving modulus operator that i have
found working
1) a = a %b + (a/b) * b ; for integral values of a and b
2) w % n = w & (n-1);
can any one give more examples for relations like this ...????
the following are the relations involving modulus operator that i have
found working
1) a = a %b + (a/b) * b ; for integral values of a and b
2) w % n = w & (n-1);
can any one give more examples for relations like this ...????
Comment