Copy dynamically allocated array of ints · void copy(int *to, int *from) · { · int c; · for(c=0; c<sizeof(from)/sizeof(int); c++) · { · to[c] = from[c]; · } · }.
確定! 回上一頁