/* show_bytes.c * For use in CSE351 Lec 3 on Memory, Data, and Addressing */ // needed for library function printf() #include /* Normally you would put function prototypes here: void show_bytes(char *start, int len); void show_int(int x); Except that in this case the function declarations come before their first calls in the file, so they are not necessary. */ /* Takes start address of data and prints out len bytes in hex. */ void show_bytes(char *start, int len) { int i; // for loop doesn't need curly braces {} because single-line body for (i=0; i