Malloc Exercise

struct ABC {
        int **ip;
}*sp;
struct ABC {
        int ***ip;
}*sp;
struct ABC {
        int **ip;
}**sp;
struct ABC {
        int ***ip;
}***sp;
struct MNP {
        int *ip;
};

struct PQR {
        struct MNP **mnp_ptr;
};

struct ABC {
        struct PQR *pqr_ptr;
}*abc_ptr;