C++ 转义字符使用注意
摘要:
#include <iostream> int main() { std::cout << "hello, \x4DO\115" << '\n'; //hello, MOM //普通转义字符直接使用 ‘\n’ std::cout << "hello, \x4DO\115" << std::endl; //hello, MOM //泛化转义字符 \x4D(16进制表示) \115(8进制表示) st 阅读全文
posted @ 2019-11-13 12:02 wu.g.q 阅读(1108) 评论(0) 推荐(0) 编辑