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.
我正在这里做一些功课,但我已经完全没有想法了。我需要用 C 语言制作一个简单的网络浏览器,其中必须包括简单的 HTML 阅读。这通常很容易,但挑战在于:挑战自己,我想使用尽可能少的库。如果必须,我可以使用任何库。
我需要用 C 中的 URL 的内容填充一个 char*,但我不知道该怎么做。对此有什么想法吗?
请注意,这不是类似问题的重复,因为我问的是 C,而不是库。
您需要编写一个基本的 HTTP 客户端。以下基本操作是必要的:
您现在应该可以开始使用 Google 搜索了。