摘要: 1 #include 2 #include 3 void multiply(const char *a,const char *b) 4 { 5 assert(a!=NULL && b!=NULL); 6 int i,j,ca,cb,*s; 7 ca=strlen(a); 8 cb=strlen(b); 9 s=(int *)malloc... 阅读全文
posted @ 2018-09-08 20:57 浪里飞 阅读(504) 评论(0) 推荐(0) 编辑