2013年11月21日 星期四

[觀點][C語言](0x7700 && 0x8800) || 0xff00 用%d印出來是1

#include <stdio.h>

int main()
{
    int a = 0x7700;
    int b = 0x8800;
    int c = 0xff00;
    int d, e;

    d = (a && b) || c;
    e = (a | b) & c;

    printf("d = %d\n", d);
    printf("e = %d\n", e);

    return 0;
}

[Answer]
1
65280

沒有留言:

張貼留言