-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshow-bytes.c
More file actions
50 lines (36 loc) · 863 Bytes
/
show-bytes.c
File metadata and controls
50 lines (36 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include <stdio.h>
#include <string.h>
typedef unsigned char *byte_pointer;
void show_bytes(byte_pointer start, size_t len) {
size_t i;
for(i = 0; i < len; i++) {
printf(" %.2x", start[i]);
}
printf("\n");
}
void show_int(int x) {
show_bytes((byte_pointer)&x, sizeof(int));
}
void show_float(float x) {
show_bytes((byte_pointer)&x, sizeof(float));
}
void show_pointer(void *x) {
show_bytes((byte_pointer)&x, sizeof(void *));
}
void test_show_bytess(int val) {
int ival = val;
float fval = (float)val;
int *pval = &ival;
show_int(ival);
show_float(fval);
show_pointer(pval);
}
int main() {
test_show_bytess(12345);
/** for ex2.5 */
printf("ex2.5\n");
test_show_bytess(0x87654321);
/** for ex2.7 */
printf("ex2.7\n");
show_bytes("abcdef", strlen("abcdef"));
}