2022.2.28 <<符号的运用

#include <stdio.h>
int a=1;
int b=a<<2;
int main()
{
    printf("%d\n",b);\\32个0向左移两位为00100,结果为四
    return 0;
}

posted @ 2022-02-28 20:07  抢你红包  阅读(102)  评论(0)    收藏  举报