public bool IsEmpty(Node h)
public Node Push(Node h, int item)
Node temp = new Node(item);
Console.WriteLine("No data");
Console.WriteLine(h.data);
public static void Main()
Stackimpl stk = new Stackimpl();
head = stk.Push(head, 1);
Node currhead = stk.Pop(head);
currhead = stk.Pop(currhead);