Quote Originally Posted by VictorN View Post
1. Define "not running".
2. Please, use Code tags and indentations. See Announcement: Before you post....
Quote Originally Posted by lucmicky View Post
I narrowed down the problem to this function:
Given:

#define NUMBER_OF_SPECIAL_TOKENS 13

char *spectoklist[NUMBER_OF_SPECIAL_TOKENS*2][2];
int splistsz = 0;

void specialTokenElement(char *sptok, int tokrep){
spectoklist[splistsz][0] = sptok; spectoklist[splistsz][1] = (char*) tokrep;
splistsz+=1;
cout<<spectoklist[splistsz][0]<<"|"<<spectoklist[splistsz][1];
}
And? ...