> memcpy(&x,&y,sizeof(y)); /* Copy y into x */ But that comment is completely superfluous and totally redundant :-) Why not memcpy(&x,&y,sizeof(y)); /* RTFM */ or memcpy(&x,&y,sizeof(y)); //use: <string.h> ----- jeffa