02 2022 档案
摘要:#include <stdio.h> // 将一个字母转换为大写 #define UPCASE(ch) (((ch) >= 'a' && (ch) <= 'z') ? ((ch)-0x20) : (ch)) int main() { char c = 'c'; printf("After conve
阅读全文
摘要:#include <stdio.h> int main(){ int a = 1 ,b = 1; if(1 == (a&b)){ printf("都是1:true.\n"); }else{ printf("都是1:false.\n"); } return 0; } 执行 都是1:true. #inc
阅读全文