往一个字符串里加一段新的字符串的方法~内详
比如说一个数组str[]中的内容是"abc",如果像把"efg"也加入进去,怎么处理?除了用format,还有什么其他办法? 只要有一种方法不就行了!! strcat ( dest[], const source[], maxlength )
Maxlength is the total buffer of the destination.
(Maxlength是目标总长度) /* Adds one string to another. Last parameter different from 0, specifies
* how many chars we want to add. Function returns number of all merged chars. */
native add(dest[],len,const src[],max=0);add()函数也可以的,或者用COPY()也行.
页:
[1]