/*使用编程练习2中的拷贝函数,把一个内含7个元素的数组中第3~第5个元素拷贝至内含3个元素的数组中。该函数本身不需要修改,只需要选择合适的实际参数(实际参数不需要是数组名和数组大小,只需要是数组元素的地址和待处理元素的个数)。*/#include<stdio.h>void copy_arr(int * target1, int * source, int n);int main(voi
/*使用递归函数重写编程练习8。#include<stdio.h>double power(double n, int p);int main(void){double x, xpow;int exp;printf("Enter an number and the positive integer power");printf("to which \nthe number will be