So i have this code, the snippet is given below.
list* init(list* list1)
{
list1->head = NULL;
list1->size = 0;
return list1;
}
list1 is a linked list and init is called from main function.
now on the line list1->head= NULL, after i run the code it highlights this particular line and says
No module definition file specified: using defaults.
and it stopd execution.
I am using turbo C on windows 7.
what shall i do? Shall i post the complete code.. It is kinda big though..
list1->head = 0and see if it complains. – Chris Sep 9 '11 at 17:49list->head =0it says, General Protection Exception 0x213F:0X000D Processor fault – Kraken Sep 9 '11 at 17:51assert(list1)failed, that means that you didn't allocate memory for list1 before calling the function. Do you have alist* list1 = malloc(sizeof(list))somewhere before this? – Chris Sep 9 '11 at 18:01