|
-
May 22nd, 2011, 01:55 PM
#4
Re: No errors, but code not running
 Originally Posted by VictorN
 Originally Posted by lucmicky
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? ...
Victor Nijegorodov
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|