char 配列の一部を新しい配列にコピーしたい
void match(char* probe, char* pattern)
char* matchText;
//the char-array probe in this example is at least 12 characters long
//I'm only writing numbers in the strncopy-command to make it easier to understand
strncpy (matchText, probe + 5, 5 );
それを実行すると、デバッガーはエラーで終了します。私は何を間違っていますか?