私は現在、C++ の初心者であり、演算子について学習しています。
#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;
}
上記のプログラムの出力は次のとおりです。 67
これは説明です
しかし、これの実用的な用途は何ですか?