What is the difference between
char cur_byte=*((char *)(buf+i));
and
char *b=(char *)(buf);
char cur_byte=*(b+i);
Assume: buf is a pointer to void// void *buf; and i is used as an iterator in a for loop I found this code(the first line) in a c source code which generates rabin fingerprints and because VC2010 express reported it as an error I had to replace it with the second two lines. And I am not sure if it can do the intended purpose. Plus I would be grateful if anyone can give me a hint where to get a working C++ source code for content defined chunking and fingerprint generating.