cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Function pointer question
Function pointer question
May 16, 2009 at 8:53pm UTC
matrebatre
(29)
I found this code in an open-source project:
1
2
3
char
* address;
// (...)
return
(
void
*)*(
unsigned
int
**)(address+0x44);
What does this mean?
May 16, 2009 at 11:17pm UTC
Bazzy
(6281)
that casts address+0x44 to a pointer to pointer to
unsigned
int
and casts the value of the pointer at that location to a pointer to
void
, finally it returns that
Topic archived. No new replies allowed.