Latest web development tutorials

C 練習實例51

C 語言經典100例 C語言經典100例

題目:學習使用按位與&。

程序分析: 0&0=0; 0&1=0; 1&0=0; 1&1=1 。

程序源代碼:

//  Created by www.w3big.com on 15/11/9.
//  Copyright © 2015年 本教程. All rights reserved.
//

#include <stdio.h>
int main()
{
    int a,b;
    a=077;
    b=a&3;
    printf("a & b(decimal) 为 %d \n",b);
    b&=7;
    printf("a & b(decimal) 为 %d \n",b);
    return 0;
}

以上實例輸出結果為:

a & b(decimal) 为 3 
a & b(decimal) 为 3

C 語言經典100例 C語言經典100例