How exactly do register variables work in C? When should they be used? K&R touches upon them briefly but moves right along. Is there any source in which I can read about them in depth?
malloc allocates memory, like declaring (& initializing?) a variable, except without defining a name to reference/use the memory...? hence using pointers n stuff?