OK, then try to figure out how to pass the switches to the compiler. I don't have Dev-C++, but generally these options are found via something like;
Project / Settings / Compiler / Compiler Options. Can you find anything similar in Dev-C++?
Here is a link to the GCC Options to Request or Suppress Warnings
As you can see, there are quite a lot of them, the link is to gcc v.3.3.6 online docs (that might be close to the version that you have). At the very minimum, you want to pass the -Wall
option to the compiler (enables all warnings).
[EDIT]
You can find out your compiler version by issueing gcc --version
in a command prompt.