oh

soo if i do

Code:
//main:
char returnstuff[];
returnstuff=stuff("hello");

char *stuff(char *blah){
   char otherstuff[]=blah;

   return *otherstuff;
}

//crappy example but that would return an array?