Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.