Question : Brief explain of pseudocode

Can someone provide an explanation of the following
v8 = *(_DWORD *)(v3 + 4);
Thks in advance

Answer : Brief explain of pseudocode

Variable v3 is incremented by 4.
it is then cast to a _DWord pointer with  (_DWORD *)
That is then assigned to variable v8 - which should be defined as follows   _DWORD * v8
Random Solutions  
 
programming4us programming4us