c编程,初始化一个数组,然后把数组内容复制到另外2个数组
c编程,初始化一个数组,然后把数组内容复制到另外2个数组
日期:2011-03-14 23:13:44 人气:1
#include
double copy_arr(double source[],double target[],int n); // 这里给出参数呀!
double copy_ptr(double source[],double target[],int n);
int main()
{double sourc[5]={1.1,2.2,3.3,4.4,5.5};
double target1[5];
double target2[5];
copy-arr(source