Let's assume that I have a char variable that is going to hold 1000 bytes.
char var[1000];
How would I use malloc to allocate that much memory for whatever is going to be in there?
I've tried reading up on malloc, but even K&R did not seem to have much info on it.