I've been using Code::Blocks on Windows 64-bit to learn programming, but it's causing me problems.
Mainly, the code works just fine when going into Code::Blocks and running it, but when I try to launch it directly from the .exe in the bin/ subfolder, I encounter multiple errors. It initially never finds the .dll files, but when I put them in the same folder, I get the "Couldn't launch app properly (0xc0000007b)" error (the message might be wrong, I translated it). After looking up some things, I found that it might be a conflict between 32 and 64 bit libraries; however, I checked all my .dll files and they were all 32 bits, like Code::Blocks.
Is there a way to fix it, or do I have to change my IDE completely to work on 64 bits and 64 bits only?
EDIT: For anyone wondering, the problem was coming from having the wrong .dll files. Basically, I found the 32 bit ones, while I was supposed to be looking for the 64 bit ones in the compiler's files. Thanks to everyone for their advice !