Microsoft Interview Question
1,273 Interview Reviews |
Back to all Microsoft Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Escalation Engineer at Microsoft:
Helpful Question?
Yes |
No
Inappropriate?



0 of 0 people found this helpful
by Interview Candidate:
current = SomeList;
previous = null;
while(current)
{
Next = current->pNext;
current->pNext = Previous;
Previous = current;
current = Next;
}