Name: Anonymous 2008-08-26 6:39
Why do programmers still code in arbitrary limits like these?
It breaks when you do
Why not redesign so that you use an O(1) space algorithm, or if it can't be avoided, dynamically allocate as much as needed?
It breaks when you do
#define LINE_MAX UINT_MAXWhy not redesign so that you use an O(1) space algorithm, or if it can't be avoided, dynamically allocate as much as needed?