#include<stdio.h> void main() { long v=13,p=12;// 13 1101 printf("%u",v&p);//12 1100 //进行与运算之后就是 1100 也就是12了 //<<移位运算符 (左移) }