Write a C++program to show the use of division C++ shorthand operator.
Q11. Write a C++ program to show the use of division 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;
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 5.