C/C++中的标准泛空格符有哪些?

standard white-space characters are:
 

'  ' (0x20) space (SPC)
'\t' (0x09) horizontal tab (TAB)
'\n' (0x0a) newline (LF)
'\v' (0x0b) vertical tab (VT)
'\f' (0x0c) feed (FF)
'\r' (0x0d) carriage return (CR)

你可能感兴趣的:(C++,c语言,C语言,C++,空格符)