} indicates the closed
curly brace in computer science.
- If it is there means it must and shoud have opening brace also(
{
)
- The code between { } is the block.
- In every language we are using these braces for creating
seperate block and excecute them in a proper manner.
- Here it has only } this gives an error for unbalanced
brackets.
- In C ,JAVA,C++ everything is written within the flower
brackets.
- These opening and closed brackets are used in condition
statements and loops also.