zoukankan      html  css  js  c++  java
  • ctrl+z的ascii码是多少?

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

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

    故,做如下测试:

    #include <stdio.h>  
    #include <conio.h>  
    
    int main()
    {
        char c;
        while (c = getch())
            printf("%c : %d
    ", 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的知识点。

  • 相关阅读:
    常用jquery
    常用记录
    mysql proxy 读写分离
    Linux 学习笔记
    php 1116
    php 1115
    php 1110
    php 1109
    php 1108
    php 1105
  • 原文地址:https://www.cnblogs.com/yangguang-it/p/8067807.html
Copyright © 2011-2022 走看看