摘要: 先来看一段代码: 12345678910 #include <stdio.h>int main(){ int i = 1; printf("%d\n",sizeof(i++)); printf("%d\n",i); return 0;} 复制 请问该段代码的输出是什么? 首先sizeof是用于求数据 阅读全文
posted @ 2020-01-06 21:01 雷雷提 阅读(342) 评论(0) 推荐(0) 编辑