What's up all? I'm getting a strange error during the delete[] A process. I know it is happening at that point because it is the only thing following an output before the return 0; statement. I'm seeing the output, but getting this error:
Mind you, this is happening during the delete[] A operation. It has to be since the statement immediately preceding it is executing and the statement immediately following it is return 0; to end the program.
Anyone have any ideas on this?
Quote
Unhandled exception at 0x76FBF8E9 (ntdll.dll) in a.exe: 0xC0000005: Access violation writing location 0x007A5A74
Mind you, this is happening during the delete[] A operation. It has to be since the statement immediately preceding it is executing and the statement immediately following it is return 0; to end the program.
cout << endl << "Total time: " << timer << " ms\n"; //this output occurs delete[] A; return 0;
Anyone have any ideas on this?