码迷,mamicode.com
首页 > 其他好文 > 详细

ctrl+z的ascii码是多少?

时间:2017-12-20 03:37:33      阅读:849      评论:0      收藏:0      [点我收藏+]

标签:while   9.png   需要   tcp/ip   发送   stdio.h   http   技术   images   

今天在使用中移动的模组的时候,发现:

技术分享图片

突然把我难住了,ctrl+z要在我的数据包中通过TCP/IP发送,而结束字符肯定是需要我自己加在数据包的末尾的。

故,做如下测试:

#include <stdio.h>  
#include <conio.h>  

int main()
{
    char c;
    while (c = getch())
        printf("%c : %d\n", c, c);
    return 0;
}

技术分享图片

我的输入是ctrl+z(小z),ctrl+Z(大写z),ctrl+A,+B,+C,+D,+E,+F.

得出结论是,ctrl+字母a-z,对应ascii码 1-26.

为了试验,特意尝试ctrl+字母的大小写,发现是一致的,故记录一下新get的知识点。

ctrl+z的ascii码是多少?

标签:while   9.png   需要   tcp/ip   发送   stdio.h   http   技术   images   

原文地址:http://www.cnblogs.com/yangguang-it/p/8067807.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!