终止符参考
在哪里可以找到 C 的完整终止符参考? 我只知道%i,%d,%u......而且我什至不确定这些被称为“终止符”:这就是为什么我不知道如何谷歌它们。
谢谢!
where I can find a COMPLETE termination character reference for C?
I only know %i, %d, %u... And I'm not even sure those are called "termination character": that's why I don't know how to google them.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你的意思是“格式说明符”。请尝试此处。
You mean "Format specifiers". Try here.
你的意思是 printf 转换说明符?
我会依赖 POSIX 规范,因为它是规范的(嗯,无论如何,POSIX 是规范的)并且免费。
You mean printf conversion specifiers?
I would rely on the POSIX spec, since it is normative (well, normative for POSIX anyway) and free.
我不知道它有多完整,但我喜欢这个,因为它很简洁(这可能不是您要找的):
请注意,它还包含非标准项目(例如表示分组数字的撇号标志) 。
I don't know how complete it is, but I like this one because it's concise (which might not be what you're looking for):
Note that it also includes non-standard items (like the apostrophe flag to indicate grouping digits).