Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sameetasadullah/check-curly-brackets-using-stack
A simple C++ code to validate curly brackets of given code using stack
https://github.com/sameetasadullah/check-curly-brackets-using-stack
cpp stack visual-studio
Last synced: about 1 month ago
JSON representation
A simple C++ code to validate curly brackets of given code using stack
- Host: GitHub
- URL: https://github.com/sameetasadullah/check-curly-brackets-using-stack
- Owner: SameetAsadullah
- Created: 2022-08-05T21:02:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-05T21:14:24.000Z (over 2 years ago)
- Last Synced: 2023-03-10T20:47:04.771Z (almost 2 years ago)
- Topics: cpp, stack, visual-studio
- Language: C++
- Homepage:
- Size: 19.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Check Curly Brackets Using Stack
### Description
A simple `C++ Code` to validate curly brackets of given code using `Stack.`### Manual
- Place the code you want to validate in a `txt file`.
- Pass the name of that txt file to the function `checkCurlyBrackets()`.
- `Boolean Value` will be returned i.e, 1 for correct brackets and 0 for incorrect brackets.