下面的函数将输出什么结果?
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
时间: 2024-10-27 12:05:51