I don't understand this syntax in this old C program, and am not set up to test the code to see what it does. The part i am confused about is the concatenation to the array. I didnt think C could handle auto-typecasting like that, or am I making it too difficult in my head being that its Friday afternoon....
char wrkbuf[1024];
int r;
//Some other code
//Below, Vrec is a 4 byte struct
memcpy( &Vrec, wrkbuf + r, 4 );
Any idea what will happen here? What does wrkbuf become when you concatenate or add an int to it?