?? and.c
字號:
#include <stdio.h>int main(){ int i1, i2; /* two random integers */ i1 = 4; i2 = 2; /* Nice way of writing the conditional */ if ((i1 != 0) && (i2 != 0)) printf("Both are not zero\n"); /* Shorthand way of doing the same thing */ /* Correct C code, but rotten style */ if (i1 && i2) printf("Both are not zero\n"); /* Incorrect use of bitwise and resulting in an error */ if (i1 & i2) printf("Both are not zero\n"); return (0);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -