Hello,
I work a project on dev-c++ and I have the following problem.
The data is taken from a file with a specific, xml-like, representation.When I enter a file with wrong representation the programs starts but says that the proccess failed due to wrong data(I have written a small amount of code to examine it).But when I enter the file that I actually want to use it as input,the following message appears.Do you have any ideas?
There's a number of reasons that can cause that error. I think the most common is stack corruption. You should check your array bounds and make sure you're not crossing them.
Are you sure none of the libraries used by the project (if any) use any DLLs? Missing DLLs are the only reason I know that can cause a Windows binary to run in one system and fail in another. Unless it was compiled for AMD64, which I don't think MinGW (or at least the version of MinGW that comes with the last release of Dev-C++) is capable of.