#include <stdio.h>
struct s
{
int a;
int b;
int c;
void *d;
};
void main()
{
printf("%d",&((struct s *) 0)->d);
getchar();
}
&((struct s *) 0)->d是什么意思??
#include <stdio.h>
struct s
{
int a;
int b;
int c;
void *d;
};
void main()
{
printf("%d",&((struct s *) 0)->d);
getchar();
}
&((struct s *) 0)->d是什么意思??