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.
我需要制作一个程序,将文本文件作为输入,并用一个替换的单词输出相同的字符串;主函数将采用 3 个参数(wordR、wordS、文件)。那么任何人都可以帮我一个很好的提示,我可以扫描c中的单词吗?
使用 strtok() 或 strtok_r() 函数。
明显的可能性是[fs]scanf's "%s" 转换:
[fs]scanf
char one_word[64]; fscanf(input_file, "%63s", one_word);