/* * structures * */ typedef int*** jimint; struct foo { int first_number; int second_number; }; int main(){ jimint ippp; int x; struct foo y; struct foo *yptr; yptr = malloc(sizeof(struct foo)); (*yptr).first_number= 7; yptr->second_number = 8; y.first_number = 7; }