#include <stdio.h>
void main(){ short a; short *b; printf("%d\n%d\n" , sizeof(a),sizeof(b));} 输出24为啥后面指针占4个字节哈?
谢谢~