C 函数 toascii

浏览:
字体:
发布时间:2013-12-09 23:23:46
来源:
  平时并不关心一个字符的 ASCII 是多少,不过,最近,在看一些关于哈希表的东西,ASCII 码就显得特别重要,再后来,我就看见了这个函数 toascii ,下面,我们首先看看这个函数的原型:
       extern int toascii(int c)
      可见,我需要传递一个 int 类型的参数给它,也就是一个字符,这个函数的返回值是一个整数值,当然,它代表的就是 0--255 之间的某一个数值,与你传递的那个字符的 ASCII 对应,下面,就随便写点东西吧:
 
#include <iostream>  #include <cstring>  #include <ctype.h>    using namespace std;    void to_asscii(char *str);    int main(int argc, char **argv, char **environ)  {      char *str = "dlutbrucezhang";      to_asscii(str);      return 0;  }    void to_asscii(char *str)  {      int len = strlen(str);      for (int i = 0; i != len; i++)      {          cout<<str[i]<<" : "<<toascii(str[i])<<endl;      }      return;  }  

 

 
      运行的结果如下图所示:
>更多相关文章
24小时热门资讯
24小时回复排行
资讯 | QQ | 安全 | 编程 | 数据库 | 系统 | 网络 | 考试 | 站长 | 关于东联 | 安全雇佣 | 搞笑视频大全 | 微信学院 | 视频课程 |
关于我们 | 联系我们 | 广告服务 | 免责申明 | 作品发布 | 网站地图 | 官方微博 | 技术培训
Copyright © 2007 - 2024 Vm888.Com. All Rights Reserved
粤公网安备 44060402001498号 粤ICP备19097316号 请遵循相关法律法规
');})();