If i write this code outside of the main function, are the indexes initialised to '\0'?
char source[1000000];
The answer is yes.
John
Cool! Is this standard behaviour on all C99 compilers?
Quote from: Gary Willoughby on January 09, 2010, 05:49:19 PM
Cool! Is this standard behaviour on all C99 compilers?
I believe it is a requirement.
John
Hi Gary,
Why not to use a memory allocation function?