I think what you're looking at is something like:


#include <stdio.h>

void foo(char *str)
{
*str = 'T'; // change the data pointed to by the pointer
// make it a 'T'...