编写一个函数 将一个数组的值复制给另一个数组

#include "stdAfx.h"
#include "ctype.h"
#include "stdlib.h"
int main(void)
{
	void sum_(int a[],int b[],int x);
	int a[5],b[5]={3,6,8,1,6};
	sum_(a,b,5);
	system("pause");
    return 0;
}
void sum_(int a[],int b[],int x)
{
	int i;
	for(i=0;i

你可能感兴趣的:(C)