07-13-2006 06:02 AM
07-13-2006 10:08 AM
Just out of curiosity... are you using recursive functions?
If you are and they require large data sets, you really ought to be allocating the needed storage space on the heap using malloc() or calloc() instead of using the stack. The heap has a much larger space limit than the stack.
Of course, if you do this, you will need to be careful about freeing those allocated blocks when you are done with them to prevent memory leaks.