MID$

I've got a variable of a string type - Strvar
how could I write down only the third letter, for example, from Strvar?(MID$)
THNX
Marko
how could I write down only the third letter, for example, from Strvar?(MID$)

THNX
Marko
char nam[50];
char letter[1];
strcpy(letter, NAME);
letter[0] = nam[n];
strcpy(text, letter);