以下為Windows NT 下的32 位C++程式,請計算sizeof 的值

weixin_49249294發表於2020-10-02

void Func ( char str[100])
{
請計算
sizeof( str ) = 4 (2 分)
}
char str[] = “Hello” ;
char *p = str ;
int n = 10;
請計算
sizeof (str ) = 6 (2 分)
sizeof ( p ) = 4 (2 分)
sizeof ( n ) = 4 (2 分)
void *p = malloc( 100 );
請計算
sizeof ( p ) = 4 (2 分)

相關文章