Created
February 17, 2022 14:55
-
-
Save devsingh1234/f4ced2ab9a73e49d1da973483afb926a to your computer and use it in GitHub Desktop.
client
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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