Additional Information
Note: The maximum stack size in LabWindows/CVI is 2 GB, the minimum stack size is 100 KB, and the default stack size is 250 KB. Please refer to
LabWindows/CVI Programmer Reference Manual, which ships with LabWindows/CVI, for more information.
If you are creating an array that is larger than the 2 GB maximum stack size, you can dynamically allocate memory for an array using the
calloc() function. Doing this will pull memory space from the heap instead of the stack, which has a lot more accessible memory. However, if you do dynamically allocate memory, be sure that you
free the allocated memory space at the end of its use to prevent issues later on.