Ask your problems, query related to WBUT (MAKAUT) syllabus, also Share your Knowledge by Answering Questions.
Could anybody please upload the question papers of ES-101 of previous years??
(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
Consider two tumblers, the first containing one litre of coffee. Suppose you take one spoon of water out of the first tumbler and pour it into the second tumbler. After moving you take one spoon of the mixture from the second tumbler and pour it back into the first tumbler . Which one of the following statement holds now?
I am student of computer science engg in RCCIIT, can you please tell me from which website i can download my WBUT registration form for my first year?
how to implement an array????????