This question already has answers here:
What is the use of the %n format specifier in C?
                                
                                    (10个回答)
                                
                        
                                6年前关闭。
            
                    
printf中的%n是什么?

如何在我的代码中使用它(请提供示例代码)?

谢谢。

编辑:

谷歌搜索之后,我找不到关于%n的任何样本。但是有些人没有回答就关闭了这个问题。

最佳答案

%n说明符不输出任何内容,并且相应的参数必须是指向有符号整数的指针,该整数用于存储到目前为止写入的字符数。

来源C++ Reference

关于c++ - printf中的%n是什么以及如何使用它? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7386946/

10-12 20:43