Use the ASCII chart below to help determine the output of…

  Use the ASCII chart below to help determine the output of the following program.  Assume that the address of str[0] is:  0x9F8   ascii chart:   #include #include char str[16]; int main(void){     char *str_ptr;      strcpy(str,”abcde0123456789″);     str_ptr = str;     str_ptr += 9;                 printf(“%c %x %p \n”,                *str_ptr, *str_ptr, str_ptr);     return 0;}