Quote Originally Posted by The Brain
Indicates that there is a good possiblity there is a problem in the vicinity of line #41


Code:
char code_array[32];
for(int i=0; i<codeNO; i++)
{
code_array = code[i];
This is the time to start looking at gettting a new compiler.. because the one you have now let you get away with assigning 32 elements of an array to a char pointer.

I think you meant to do something like this:

Code:
char code_array[32];
for(int i=0; i<codeNO; i++)
{
code_array[i] = code[i];
Ah, well yea, I have no problem about that, it is only the boards that consider the [ i ] as italic so it cancels it and italize the font instead, sorry about not noticing that, but in my .cpp file it has no mistakes, so that is not the error, the main problem is that the file is encrypted/decrypted missing some parts at the end (i.e.; only a part from the beginning of the file is encrypted/decrypted)..