I am currently a beginner in C++ and learning about operators.
#include <iostream>
using namespace std;
int main(int argc, char *argv[]) {
unsigned int a=195;
unsigned int b=87;
unsigned int c;
c=a&b;
cout << c;
}
The Output of the above program is : 67
This is explanation
But What is the practical use of this?