If you're printing just a character in a position, just use:

char *mystring = "Hello there. Some message goes here.";

printf("%c\n", mystring[4] );

Quzah.