I'm using a very compact C++ compiler.(The whole thing is only 6mb)
called 'DIGITAL MARS'.
It says it compiles for windows and dos in the readme.txt
But I can't compile for windows.
All I get is dos executables!
Am I ment to include a specific .h file?
Or am I just compiling wrong?
You need to include Windows.h and use WinMain instead of main in your app, and other stuff too. Look for a Winapi tutorial (warning: winapi sucks). The compiler might have also come with a simple window application example.
You still have to use the WinAPI to make windows programs, it's just crap to work with. Here's some good WinAPI tutorials http://www.relisoft.com/win32/ .