我具有原型的功能。
void test( int array [] , int b);
我知道,我们可以将原封成: 避免试验(int*, int);
。
在<代码>main()中,我们宣布以下阵列:
int array1[10], array2[10];
将职能机构设至0,
test ( array1 , b)
{
for ( int i = 0 ; i < b ; i++)
array1[i] = 0;
}
能够、为什么?
int main()
{// assuming b is the size of the array
test(array1 , b);
test(array2 , b) ;
return 0;
}
i know the basic of c++ im trying to write my own include files. I am just wondering if this is possible and is it a good choise?