vote up -1 vote down star
int q=(int)((nid-1031)/15);
int r=((nid-1031)%15)-2;
const char* x = (LPCTSTR) k;
strcpy((char*)board[q][r],x);

this code doesnt have any compiling errors..but during execution it says the mfc application has encounterd a problem and needs to close...

here k is a CString value.. nd board is a char array.

flag
What are the dimensions of board? Could you elaborate on what you're trying to achieve? – iWerner Oct 8 at 10:06
Does this happen in Release or Debug mode? The debugger should give you a hint on where the problem is. Can you verify that it is safe to write into board this way? – mxp Oct 8 at 10:19
the dimensions of board are 15*15;basically i have implemented the board of scrabble as a grid of 225 static boxes..so whenever i place a letter on a static box(the letter bein k in the code) i want to be stored at the corresponding place in the 2d array.. – shashank saket Oct 8 at 10:31
it happens in release mode – shashank saket Oct 8 at 10:34
1  
Let's see the definition of board and how k is set - and preferably a compilable same of code – Mark Oct 8 at 11:39
show 3 more comments

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.