| 29 | } |
| 30 | |
| 31 | int main() |
| 32 | { |
| 33 | string expression; |
| 34 | cout << "Enter an expression: "; // input expression from STDIN/Console |
| 35 | cin >> expression; |
| 36 | if(AreParanthesesBalanced(expression)) |
| 37 | cout << "Balanced\n"; |
| 38 | else |
| 39 | cout << "Not Balanced\n"; |
| 40 | } |
nothing calls this directly
no test coverage detected