摘要: C语言整型在内存中的存储 练习2 —— 说明以下代码输出结果 1 #define _CRT_SECURE_NO_WARNINGS 1 2 #include <stdio.h> 3 4 int main() 5 { 6 char a = -128; 7 printf("%u\n", a); 8 ret 阅读全文
posted @ 2022-05-17 18:01 ttweixiao9999 阅读(25) 评论(0) 推荐(0) 编辑