Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个程序,它接收来自用户的文本输入,并将其保存在一个指针数组中,每个单词都作为一个指针(让我们说 char** 单词)
我的问题是:一旦我有了它,我怎么知道单词的大小?
从用户那里读取它们时对它们进行计数。
无法查看 C 数组并知道它包含多少元素,因此您需要跟踪。
实际上,您可能需要跟踪两件事:(1)您创建的数组有多大(您可以处理的最大单词数),以及(2)到目前为止您实际看到的单词数.