每日一题(6)—— sizeof用法
时间:2019-07-09 12:09:01
[导读]已知int a,一下那种写法是错误的?A. sizeof(int);
B. sizeof(a);
C. sizeof int;
D. sizeof a;以下答案是来自《C语言深度剖析》:
已知int a,一下那种写法是错误的?
A. sizeof(int); B. sizeof(a); C. sizeof int; D. sizeof a;
以下答案是来自《C语言深度剖析》:





