可能重复:
作为参数传递的 Sizeof 数组
我想知道为什么以下代码的输出是 1 和 9。这是因为函数大小中未声明的数组吗?如何将“数组大小”分离为函数?
#include "stdafx.h"
#include <iostream>
using namespace std;
int size(int a[])
{
return sizeof a/sizeof a[0];
}
int main()
{
int a[] = {5,2,4,7,1,8,9,10,6};
cout << size(a) << endl;
cout << sizeof a/sizeof a[0] << endl;
system("pause");
return 0;
}