码迷,mamicode.com
首页 > 移动开发 > 详细

深入理解计算机系统第二版习题解答CSAPP 2.7

时间:2014-11-16 14:36:28      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   sp   for   div   on   

下面的函数将输出什么结果?

1 const char *s = "abcdef";
2 show_bytes((byte_pointer) s, strlen(s));

其中字母‘a‘~‘z‘的ASCII码为0x61~0x7A。

 

show_bytes()函数定义如下:

 1 #include <stdio.h>
 2 
 3 typedef unsigned char *byte_pointer;
 4 
 5 void show_bytes(byte_pointer p, int n)
 6 {
 7     int i;
 8     for(i = 0; i < n; ++i)
 9     {
10         printf(" %.2x", p[i]);
11     }
12     printf("\n");
13 }

 

将输出:61 62 63 64 65 66

深入理解计算机系统第二版习题解答CSAPP 2.7

标签:style   blog   io   color   ar   sp   for   div   on   

原文地址:http://www.cnblogs.com/furzoom/p/CSAPP2_7.html

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