Finding the size of a pointer
Posted
by alphomega
on Stack Overflow
See other posts from Stack Overflow
or by alphomega
Published on 2010-04-29T10:28:35Z
Indexed on
2010/04/29
10:37 UTC
Read the original article
Hit count: 154
Filed under:
c
printf("pointer: %d\n", sizeof(*void));
This line results in a syntax error because of the *. What should I do to get it to work?
© Stack Overflow or respective owner