the first commit: add show_bytes.c

This commit is contained in:
will_zorin 2024-11-07 22:36:57 +08:00
commit ca2d978370
2 changed files with 37 additions and 0 deletions

1
README Normal file
View File

@ -0,0 +1 @@
This project just do for my csapp practice, over.

36
show_bytes.c Normal file
View File

@ -0,0 +1,36 @@
#include <stdio.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_bytes(int val) {
int ival = val;
float fval = (float) ival;
int *pval = &ival;
show_int(ival);
show_float(fval);
show_pointer(pval);
}
void main(void) {
int test_val = 12345;
test_show_bytes(test_val);
}