把看過資訊的重點整理出來就是觀點
#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; }
沒有留言:
張貼留言