Skip to content

Instantly share code, notes, and snippets.

@devsingh1234
Created February 17, 2022 14:55
Show Gist options
  • Save devsingh1234/f4ced2ab9a73e49d1da973483afb926a to your computer and use it in GitHub Desktop.
Save devsingh1234/f4ced2ab9a73e49d1da973483afb926a to your computer and use it in GitHub Desktop.
client
package stack;
public class StackUsingAraayClient {
public static void main(String[] args) throws Exception {
StackUsingArray stack = new StackUsingArray(5);
stack.push(99);
stack.display();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment