Modulo / Remainder In Arduino - Tutorialspoint
Maybe your like
- Home
- Whiteboard
- Online Compilers
- Practice
- Articles
- AI Assistant
- Jobs
- Tools
- Corporate Training
- Courses
- Certifications
- Switch theme
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
The modulo operator in Arduino is exactly the same as in C language, or most other languages for that matter. The operator is %. The syntax is: a % b and it returns the remainder when a is divided by b.
Example
The following example illustrates the use of this operator −
void setup() { // put your setup code here, to run once: Serial.begin(9600); Serial.println(); Serial.println(10%3); Serial.println(4%2); Serial.println(50%9); } void loop() { // put your main code here, to run repeatedly: }Output
The Serial Monitor output is shown below. You can work out the remainders yourself and verify that the output is correct.

Yash Sanghvi Updated on: 2021-05-31T14:16:04+05:30 8K+ Views
Tag » Arduino Quotient And Remainder
-
% - Arduino Reference
-
Division - / - Arduino Reference
-
%= - Arduino Reference
-
Determining And Printing A Remainder In Ardunio IDE - Arduino Forum
-
Arduino Reference - Remainder
-
Arduino Arithmetic Operators | Addition | Subtraction | Multiplication
-
Remainder Using Bitwise Operation In Arduino Sketch - Stack Overflow
-
Operators In Arduino Programming What Are They, What Are They ...
-
Fmod - C++ Reference
-
Div, Ldiv, Lldiv - Microsoft Docs
-
[PDF] Arduino-Reference.pdf
-
Wio Terminal: Arduino Customisable Timer