this is where the shit hits the fan, where the pedal hits the metal and where the rubber hits the road.
int aint[] = {12,34,67}; int (*bint)[3]; memcpy(*bint,aint,3*sizeof(int)); int (*cint)[3]; cint = &aint; printf("(*cint)[2] = %d\n", (*cint)[2]);
Post a Comment
No comments:
Post a Comment