Thank you Charles,
is corrected now! (new dll)
no address to see.
another pointer technic.
int v[4] = {10, 20, 30, 40}
int p1,p2,p3,p4
*p = &v[]
mov edi,p
mov eax,[edi]
mov p1,eax
mov eax,[edi+4]
mov p2,eax
mov eax,[edi+8]
mov p3,eax
mov eax,[edi+12]
mov p4,eax
print p1 ":" p2 ":" p3 ":" p4