1、以下为Linux下的32 位C 程序,请计算sizeof 的值。 char str[] = “Hello” ; char *p = str ; int n = 10; 请计算 (1)sizeof (str) = (2)sizeof (p) = (3)sizeof (n) =
【标准答案】
(1)6、(2)4 、(3 )4
C语言面试题(一)
原文:https://www.cnblogs.com/seamoon23/p/12102753.html