Your job is to write a C function that prints, in hex, the values of the bytes allocated to some variable. The function's prototype is
       void DumpHex(void* pData, int byteLen);
     
     and its output looks like this:
     
       The 4 bytes starting at 0x7fff1081856C are: ff 01 30 4e
     
     You should use this mainline in your program:
     
int main(int argc, char **argv) {
  char     charVal = '0';
  int32_t  intVal = 1;
  float    floatVal = 1.0;
  double   doubleVal  = 1.0;
  typedef struct { 
    char     charVal;
    int32_t  intVal;
    float    floatVal;
    double   doubleVal;
  } Ex2Struct;
  Ex2Struct structVal = { '0', 1, 1.0, 1.0 };
  DumpHex(&charVal, sizeof(char));
  DumpHex(&intVal, sizeof(int32_t));
  DumpHex(&floatVal, sizeof(float));
  DumpHex(&doubleVal, sizeof(double));
  DumpHex(&structVal, sizeof(structVal));
  return EXIT_SUCCESS;  // EXIT_SUCCESS defined in stdlib.h.
}
     To do this, your implementation of DumpHex will need to
     do a few things:
     void*
       
#include <inttypes.h>
...
  uint8_t a_byte = 0xD1;
  printf("The byte is: %02" PRIx8 " -- enjoy!\n", a_byte);
...
       
Your code should produce output that is identical to the following, except for values that might change from run to run because of randomness outside your control. That randomness includes addresses and the values of uninitialized data.
$bash gcc -Wall -std=gnu99 -o ex2 ex2.c
$bash ls
ex2 ex2.c
$bash ./ex2
The 1 bytes starting at 0x7fff3c84a1ff are: 30
The 4 bytes starting at 0x7fff3c84a1f4 are: 01 00 00 00
The 4 bytes starting at 0x7fff3c84a1f8 are: 00 00 80 3f
The 8 bytes starting at 0x7fff3c84a1e8 are: 00 00 00 00 00 00 f0 3f
The 24 bytes starting at 0x7fff3c84a1d0 are: 30 b0 f0 00 01 00 00 00 00 00 80 3f 00 00 00 00 00 00 00 00 00 00 f0 3f
 (Note that the last output line is actually a single
line, but probably wraps in your browser. Also, note that the
number of bytes shown on the last line is not the sum of the numbers
shown on the previous lines.)