All public logs

Jump to navigation Jump to search

Combined display of all available logs of Arduboy Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 01:29, 17 August 2024 Filmote talk contribs created page Modulus Function (Created page with "A modulus (modulo, mod) is simply the remainder when dividing one number by another. When we divide 7 by 2 the result is 3 with 1 remainder. In C / C++ the operand <code>%</code> returns the modulus between two numbers, for example: <pre> Serial.println(7 % 2); >> Outputs ‘1’. </pre> One ‘gotcha’ with the modulus operation is that it returns the modulus using the same sign as the dividend. The sign of the divisor is irrelevant. The examples below...") Tag: Visual edit: Switched