I have this code:
Code:
struct List{
int info;
int member;
}
int main(){
struct List *tmp;
tmp=calloc(sizeof(List));
}
I want to ask is: when I'm call tmp=calloc(sizeof(List)), It will find two consecutive memory block and create info and member or It will find two different memory block to create them.

thanks