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..