Im using the free borland compiler and im trying to make a console application. This is the code im using...

Code:
#include <iostream.h>

void main()
{
	return;
}
It compiles and links fine, but when i run it, i get an error. I think it has to do with the way im compiling it. This is what im using...

Code:
bcc32 -c -d -O -O1 -O2 -tC -tWC snake.cpp
ilink32 /ap /Tpe snake.obj, Snake.exe, , , ,
Is there anything wrong with it?