【发布时间】:2010-06-29 12:01:50
【问题描述】:
如何从递归函数返回一个字符串数组?
例如::
char ** jumble( char *jumbStr)//reccurring function
{
char *finalJumble[100];
...code goes here...call jumble again..code goes here
return finalJumble;
}
提前致谢。
【问题讨论】:
-
@Paul:从标题上我是这么认为的。
-
@Changeling:显然有人随后编辑了问题和标题 - 它最初说的是“重复”