Types of Brackets
Types of Brackets: Brackets are punctuation marks used in pairs. There are four forms of brackets used in coding or writing
Type | Name |
( ) | Parentheses or Round Brackets |
[ ] | Square Brackets or Box Brackets |
{ } | Braces or Curly Brackets |
< > | Angle Brackets or Chevrons |
What Does Bracket Mean?
Brackets, or braces, are a syntactic construct in many programming languages. They take the forms of “[]”, “()”, “” or “<>.” They are commonly used to indicate programming language constructs such as blocks, function calls or array subscripts.
Brackets are also known as braces.
If you prefer, you can also watch the tutorial video below:
Explains Bracket
Brackets are an vital syntactic element in major programming languages. They might also take several forms. The most common are the “{}”, “[]”, ()” and “<>” brackets. There are several different names for these characters. The “{}” are known as curly brackets or braces while “<>” are often called angle brackets or braces. The term “curly braces” is more favored inside the U.S., even as “brackets” is more extensively used in British English. The “()” are also frequently abbreviated as “parens” since they are parentheses characters. These characters are encoded in both ASCII and Unicode.
These brackets define important constructs in a programming language. For instance, in C and languages influenced by of C, “{}” denote a code block whilst “[]” refers to an array subscript. In Perl, the “<>” is referred to as the filehandle operator for reading from and writing to files.
Thanks for reading! We hope you found this tutorial helpful and we would love to hear your feedback in the Comments section below. And show us what you’ve learned by sharing your projects with us.