摘要: 1.这里的数字与ASCII码是对应的 1 #include <stdio.h> 2 3 int main(){ 4 char s[7] = {1,2,0,2,0,3}; 5 if(s[2] == 0) printf("%d",s[2] - '0'); 6 return 0; 7 } 输出为 -48: 阅读全文
posted @ 2022-09-18 22:58 balabalahhh 阅读(67) 评论(0) 推荐(0) 编辑