Im reading out of my C++ programming introductory book. I understand the basics of binary like 10001(2) = 17(10) and that you can find a Base 2 number from a base 10 one by long division, but a part of the book confused me.
"Let us consider the integer 65. Note that 65/2=32 and 65%2=1, where % is the mod operator." What the hell is a mod operator? I can't find and explanation anywhere in the book.