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 is: 0x9F8 ascii chart: #include #include char str; int main(void){ char *str_ptr; strcpy(str,”abcde0123456789″); str_ptr = str; str_ptr += 10; printf(“%c %x %p \n”, *str_ptr, *str_ptr, str_ptr); return 0;}