Created
November 13, 2020 16:42
-
-
Save Adobe-Android/2e360a7131a962f3d5d8dacabff1e8cd to your computer and use it in GitHub Desktop.
Is that a bracket, a brace, or something else?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// () parentheses or parens | |
// ( open paren | |
// ) close paren | |
// [] square brackets | |
// {} curly braces | |
// <> angle brackets | |
#include <iostream> | |
int main() { | |
char greeting[] = "Hello, World!"; | |
std::cout << greeting; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment