zoukankan      html  css  js  c++  java
  • 中文字符转化ASCII码代码(C实现)

    #include<stdio.h>
    void main()
    {
    	char chn[10]="测试中...";
    	printf("%X %X %X %X %X %X %X %X %X %X\n",chn[0]&0xff,chn[1]&0xff,chn[2]&0xff,chn[3]&0xff,chn[4]&0xff,chn[5]&0xff,chn[6]&0xff,chn[7]&0xff,chn[8]&0xff,chn[9]&0xff);
    }
    

      

  • 相关阅读:
    腾讯安全上海游戏部门笔试题
    2017
    2016
    2015
    2014
    2013
    2012
    2011
    2010
    2009
  • 原文地址:https://www.cnblogs.com/yuanqiangfei/p/15789286.html
Copyright © 2011-2022 走看看