i´m doing a project using C, and CodeBlocks is my IDE. Windows Vista is the OS. I added some new stuff to the already working code and now the executable crashes everytime. i have no errors after compiling though. Computers and programming is not my field, but i suspect it may have something to do with some kind of memory limitations (if that exists and even makes sense). i say this because i´m working with three different 3D matrices/arrays of dimensions:
- 1500x5x2
- 1500x5x12
- 1500x5x200
I then had another two 1D arrays both of dimension 1500. this was all working fine.
it started crashing when i added another three 2D matrices/arrays all of dimension 1500x5. if i comment some of the existing matrices, the new ones work fine, but only one at a time.
(btw, all the above referred matrices are of the INT type and were defined with pointers and callocs)
Any suggestions?