Chinaunix首页 | 论坛 | 博客
  • 博客访问: 669307
  • 博文数量: 183
  • 博客积分: 9166
  • 博客等级: 中将
  • 技术积分: 1920
  • 用 户 组: 普通用户
  • 注册时间: 2009-01-31 16:17
文章分类

全部博文(183)

文章存档

2010年(159)

2009年(24)

分类: C/C++

2010-03-30 14:37:08

Trigraph Characters

A trigraph sequence found in the source code is converted to its respective translation character. This allows people to enter certain characters that are not allowed under some (rare) platforms.

Trigraph SequenceTranslation Character
??=#
??([
??/\
??)]
??'^
??<{
??!|
??>}
??-~
Example:
printf("No???/n");
translates into:
printf("No?\n");
阅读(1742) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~