#include <stdio.h>#include <stdlib.h>#define NUM_LEN 100int add_str(char * pch1,char * pch2 , char * chResult){ chResult[NUM_LEN-1]='\0'; int idx=NUM_LEN-2; char *pEnd1=pch1,*pEnd2=pch2; for(;*pEnd1!='\0';pEnd1++); for(;*pEnd2!='\0';pEnd2++); pEnd1--; pEnd2--; sho Read More
posted @ 2011-12-02 13:41 庚武 Views(1460) Comments(0) Diggs(0)