参考手册
参考手册
实例 C 语言转义字符 \”
源代码
运行代码
#include <stdio.h> int main() { printf("They call him \"Johnny\"."); return 0; }
x
#include <stdio.h>
int
main
() {
printf
(
"They call him \"Johnny\"."
);
return
0
;
}
输出结果
They call him "Johnny".