摘要:
#include<cstdlib>#include<iostream>usingnamespacestd;//Takesapointertothearray,andthesizeofthearray.voidprint_arr1(constint*arr,size_tsize){for(size_tix=0;ix!=size;++ix){cout<<arr[ix]<<'';}cout<<endl;}//Takes2pointers.Onetothebeginningofthearray,//andoneto1pastt 阅读全文
posted @ 2011-06-28 09:31 阿武 阅读(440) 评论(0) 推荐(0) 编辑