搜索资源列表
CppReference
- CppReference 对于c/c++的详尽说明 C/C++ Reference General C/C++ Pre-processor commands Operator Precedence Escape Sequences ASCII Chart Data Types Keywords Standard C Library Standard C I/O Standard C String & Character
dxsocket10-bcb6
- 一个用于调试tcp/ip socket协议的程序,特点是可以保存10个预置的条目,并支持转义字符的输入.-For debugging the tcp/ip the socket protocol procedure, characteristics can save 10 preset entries, and supports the input of the escape character.
Display_IO_Programming
- 制作一个图形元素表graphic element menu,表中将所需的各种字符图形编上号码,并用存储器映射法将其显示在屏幕的左上部分,将光标定位在屏幕的右半部分画图区。 上、下、左、右光标控制键控制光标在四个方向上移动,不显示其轨迹,同时要控制光标位置不超过画图区的边界。 当按动谋一个数字键时,在光标位置处显示出响应编号的字符图形,然后移动光标,再显示一个字符图形,最后绘制出一幅由字符组成的图形。 按动ESCape键,退出程序,返回DOS。-Table graphic elemen
UserChecker
- 比较TXT文件和mdb文件判断每行的转义字符是否相同-TXT file and mdb file compare each line to determine whether the same escape character
tBomb
- 上下左右控制主角移动 空格摆放炸弹 Ctrl键使用道具 F1显示帮助 F2重新开始 F3全屏窗口切换 Escape键退出内容: 模拟泡泡堂的一个小作品,加入了背景音乐,音效,简单的人工智能。-Control the main character move left and down a bomb placed in a space the use of props Ctrl key F1 displays help F2 to restart F3 to switch Escape key to
c
- C/C++ 语言参考 基本C/C++ 预处理命令 操作符优先级 转义字符 ASCII码表 基本数据类型 关键字 标准 C 库: Standard C I/O Standard C String & Character Standard C Math Standard C Time & Date Standard C Memory Other standard C functions C++ C++ I/O
TestCoolChat2
- CRichEditCtrlEx支持静态表情聊天类的使用平时我们在做IM聊天之类的软件的时候,一般都会使用Rich Edit控件来作为聊天编辑框和聊天记录框的控件,在Visual Studio 2008 SP1下扩展了些功能,比如解码转义字符、编码转义字符、自动检测超链接、聊天记录框的用户内容和信息内容颜色和缩进分开显示等等,加上原来的插入位图表情、右键菜单、表情拾取器、RTF输入输出等等,可以符合基本的聊天控件要求了。-CRichEditCtrlEx support the use of st
match
- 字符串匹配,使用有限状态自动机原理实现,并解释转义字符 \\ -String matching, the use of finite state automata theory to achieve, and explain the escape character ' \ \'
5
- 这是C#的转义字符Demo,主要是一些转义字符的学习。-This is the C# escape character Demo, mainly some escape character study.
Sample
- 主要是由玩家所控制的人物或角色根据周围环境的变化,利用键盘或者手柄、鼠标的按键做出一定的动作,如移动、跳跃、攻击、躲避、防守等,来达到游戏要求的相应目标,一般是为了过关。-Is mainly controlled by the player character or role changes according to the surrounding environment, the use of keyboard or joystick, a mouse button to make a cer
C-language-escape-character
- C语言转义字符和格式控制符参考,包括常用的C语言转义字符和格式控制符-C language escape character and format control character reference, including the C language escape character and format control characters
rijndael-alg-fst
- Check return value double.The ESCAPE character is used during run-length encoding.
string_escape
- Single Escape Character for linux API Driver.
huarongdao
- Java两个华容道游戏源码文件,使用了Java中的applet和awt技术,主要是练手的。通过一些小游戏的编写,让你了解更多的Java小知识,快速进入Java编程殿堂。在本游戏中,自编写了一个代表华容道人物的类,实现华容道游戏中人物的构造,画出华容道的边界,提示曹操逃出位置和按键规则,点击相应的人物,然后按键盘上的上下左右箭头移动,判断是否和其它人物或下边界出现重叠,如果出现重叠就退回50个单位距离。。 编程思路:因为要实现华容道游戏中人物的构造,所以首先要生成表示人物的矩形块,这是通
c--ASCII
- 所有的ASCII码都可以用“\”加数字(一般是8进制数字)来表示。而C中定义了一些字母前加 \ 来表示常见的那些不能显示的ASCII字符,如\0,\t,\n等,就称为转义字符,因为后面的字符,都不是它本来的ASCII字符意思了。-All ASCII code can be represented by " \" plus the number (typically 8 hexadecimal numbers). And C is defined in a number of l
sysfs
- The expression contained an invalid escaped character, or a trailing escape.
set_symmetric_difference_comp
- The ESCAPE character is used during run-length encoding. It signals a run of identical chars.
equal
- The expression contained an invalid escaped character, or a trailing escape for Linux v2.13.6.
C语言常用转义字符表
- 该文档为C语言常用转义字符表,属于笔记类记录(Commonly used C language escape character table, record notes in class)
LINUX_Shell编程基础教程
- 1)在Linux编辑中命令区分大小写字符。 2)在Shell语句中加入必要的注释,以便以后查询和维护,注释以#开头。 3)对Shell变量进行数字运算时,使用乘法符号“*”时,要用转义字符“\”进行转义。 4)由于Shell对命令中多余的空格不进行任何处理,因此程序员可以利用这一特性调整程序缩进,达到增强程序可读性效果。 5)在对函数命名时最好能使用有含义且能容易理解的名字,即使函数名能够比较准确地表达函数所完成的任务。同时建议对于较大的程序要建立函数名和变量命名对照表。(1) the