I believe the default console size for a dos prompt is -> 80x25 characters. Of course you can always change this with a few api calls ->
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
void Set_ConSize( int iX,int iY );
int main()
{
Set_ConSize( 200,50 );
return 0;
}
void Set_ConSize( int iX,int iY )
{
HANDLE hCon;
COORD conSize = {iX,iY};
hCon = CreateFile("CONOUT$",GENERIC_WRITE |
GENERIC_READ,
FILE_SHARE_READ |
FILE_SHARE_WRITE,
0L,
OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL,
0L);
SetConsoleScreenBufferSize( hCon,conSize );
} Mike L.G.
mlg400@blazemail.com