printf中%%的意思

记得12年初的时候去一家公司面试,题目中有一道关于printf时带有多个号的题,比如%%s等,那时觉得,有这种用法吗,那时记得是把%%当成一个转义符号了,转义后还是%,今天偶然在用sscanf时,偶然发现,scanf中有对些种用法的解释,那printf中有没有呢,查过资料后,确实有:

  A % followed by another % character will write a single % to the stream.

%

或参考网址:http://www.cplusplus.com/reference/cstdio/printf/

你可能感兴趣的:(C++,%%)