摘要:
#include <stdio.h> // 将一个字母转换为大写 #define UPCASE(ch) (((ch) >= 'a' && (ch) <= 'z') ? ((ch)-0x20) : (ch)) int main() { char c = 'c'; printf("After conve 阅读全文
posted @ 2022-02-14 15:26
方罗良
阅读(279)
评论(0)
推荐(0)
摘要:
#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 阅读全文
posted @ 2022-02-14 15:03
方罗良
阅读(184)
评论(0)
推荐(0)