A program that read a number & mod by 8 using bitwise AND in Cpp.

#include<stdio.h>
#include<conio.h>
#include<iostream.h>

void main()
{
    int n;
    clrscr();
    cout<<"Enter number = ";
    cin>>n;
  
    cout<<(n&7);
    getch();

}


////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........