1. 结构体地址:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

struct son
{
    int money;
};

struct dah
{
    int money;
};

struct father
{
    struct son s;
    struct dah d;
    int money;
};

int main(void)
{
    struct father *fa;
    printf("the address of father %p  the address of son %p \n",&fa,&fa->s);
    printf("the address of father %p  the address of dah %p \n",&fa,&fa->d);
    return 0;
}
struct son s; 作为一个结构体,在father 存放一个son结构体的整体内存大小数据也就是int 大小,4字节。
当struct son *s,则作为一个指针,在32位计算机上以4字节存现内存。
当然
struct son s的地址也就是father的首地址。
2. 指针函数和指针函数
指针函数:int* func(int a,int b);
返回int *类型数据
函数指针:int (*func)(int x,int y);
func可以作为指针进行匹配的参数的指向

void running();
func = &running;
(*func)(1,2);
同时当指针函数重新声明则
结构体:
struct test{
    void (*func)(void);
};
set(struct test *t, void (*running))
{
    t->func = running;
    t->func();
}
同时在实现
void *running();
    func = (void*)&running;
    func();

&取该函数的地址,前提需要强转类型