这是在 Ansi C 中。我得到了一个字符串。我应该创建一个方法,该方法返回一个字符指针数组,这些指针指向所述字符串的每个单词的开头。我不允许使用 Malloc,而是告诉我输入的最大长度为 80。
另外,在有人因为我不搜索论坛而抨击我之前,我不能使用 strtok :(
char input[80] = "hello world, please tokenize this string"
并且方法的输出应该有6个元素;
output[0] points to the "h",
output[1] points to the "w",
等等。
我应该如何编写方法?
此外,我需要一种类似的方法来处理来自最多 110 行文件的输入。