Write a C++ program to show the use of modulus C++ shorthand operator.
Q12. Write a C++ program to show the use of modulus C++ shorthand operator.
Solution:
#include<iostream.h> //standard input/output header file
#include<conio.h> //for clrscr()
int main()
{
int m;
clrscr(); //for clearing the screen
m=10;
//’%'(mod) is used to return remainder of division
m%=2; //equivalent to m=m%2;
cout<<“\n The value of M is “<<m<<“.”;
getch(); //holds the screen until any key is pressed
return 0; //makes main() finish
}
OUTPUT:
The value of M is 0.