#include <stdio.h>
int main()
{
printf("Hello! Tom!");
}
I follow your words to do.
After I compile it in Win XP, the message shows:
------------------------
Calculating dependencies: good.cpp
Switching to target: default
mingw32-g++.exe -Wall -Wall -Wall -I"C:\\MinGW\\include" -c "good.cpp" -o ".objs\\good.o"
mingw32-g++.exe -L"C:\\MinGW\\lib" -o "good.exe" -L"C:\\MinGW\\lib" ".objs\\good.o"
Process terminated with status 0 (0 minutes, 0 seconds)
0 errors, 0 warnings
------------------------
After I run it in Win XP, the message shows:
------------------------
Project : Console application
Compiler : GNU GCC Compiler (called directly)
Directory : C:\Program Files\CodeBlocks\sun\
--------------------------------------------------------------------------------
Process terminated with status 1 (0 minutes, 1 seconds)
0 errors, 0 warnings
------------------------
Why there is still no warning?