Ask your problems, query related to WBUT (MAKAUT) syllabus, also Share your Knowledge by Answering Questions.
Can anybody apply for lecturer if he is an B.Tech degree holder (Not M.tech) ?
wot is black body radiation?
Could anybody please upload the question papers of ES-101 of previous years??
how can i change my profile college name ?
(reversing a link list)
void(struct node**p)
{struct node*q,*r;
if(*p!=NULL||*p->link!=NULL)
{r=q;
q=*p;
*p=*p->link;
}
else
{q->link=NULL;
*p->link=q;
}
else if(*p==NULL)
printf(\"no element\");
else
printf(\"1 element so no reversing\");
}
}
plzzz tell me whether my logic is correct or not