Explain *a++ = *b++ (i.e. what does it mean, how it works)
Anonymous
The equivalent code to the above snippet is: *a = *b; //copy value of b to a a++; //increment pointer a b++; //increment pointer b
Check out your Company Bowl for anonymous work chats.