摘要: 每天至少要写上一道题并且详细的表示出来 每天不要颓废啊 希望每天都能过得开心 阅读全文
posted @ 2019-11-12 21:18 YoUnGeR_MaN 阅读(106) 评论(0) 推荐(0)
摘要: #include <stdio.h>void copy_ptr(double target[][4],double source[][4],int n){ double (*p1)[4]=target,(*p2)[4]=source; for(int i=0;i<12;i++) { **p1=**p 阅读全文
posted @ 2019-10-08 17:35 YoUnGeR_MaN 阅读(89) 评论(0) 推荐(0)
摘要: #include <stdio.h>void copy_arr(double target[],double source[],int n){ for(int i=0;i<n;i++) { target[i]=source[i]; }}void copy_ptr(double target[],do 阅读全文
posted @ 2019-10-08 17:02 YoUnGeR_MaN 阅读(81) 评论(0) 推荐(0)