tags:

views:

67

answers:

1

I get this error whenever I put more of my gotoxy and textcolor but when putting more printf this error does not appear...well this was not appearing before, it just appeared in lately after tons of codes are inputted. -thanks....appreciation for those who can help or even read my question...thanks again.

EDIT: THANKS FOR THOSE WHO HELP :P

A: 

Fist thoughts are that you've run out of code space or data space while compiling. Turbo-C comes from the dark ages where memory models were rife and you frequently ran out of memory.

Your code has a large number of character constants and quite a bit of code in the one compilation unit, which also points towards a compilation memory limitation.

One suggestion is to use a larger memory model. From memory, you had different memory models like 64K code+data, 64K code + 64K data, 64K code + multiple 64K data segments, multiple 64K code + multiple 64K data, and so on.

A better suggestion is to start using a more recent compiler.

paxdiablo
Thanks for the idea, do you have any way to help me out about using a more recent compiler, just a high school student here....well school stuffs....prolly something that can create an .exe file so it can still be graded even w/o turbo C -thanks
RED
As you're using Turbo-C you're probably running on Windows. If that's the case you probably want to download Microsoft's Visual C++ Express from http://www.microsoft.com/express/Windows/ which would give you a reasonably up to date compiler and a decent IDE.
Timo Geusch
am I able to run the similar file w/ it? -thanks for the reply you saved me....
RED