#define HUGE_NUMBER ??? char string[HUGE_NUMBER]; do_something_with_the_string(string);
I was wondering what would be the maximum number that I co
You can use malloc() to get larger portions of memory than normally an array could handle.
malloc()