Skip to content

Commit 0e71039

Browse files
authored
Update c-tokens.md
1 parent fb34aed commit 0e71039

File tree

1 file changed

+9
-15
lines changed

1 file changed

+9
-15
lines changed

docs/c-language/c-tokens.md

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,22 @@ ms.assetid: 05e5f6f1-b8ea-4f74-af17-c0b9b5dbd3b5
77
---
88
# C Tokens
99

10-
In a C source program, the basic element recognized by the compiler is the "token." A token is source-program text that the compiler does not break down into component elements.
10+
In a C source program, the basic element recognized by the compiler is the "token." A token is source-program text that the compiler doesn't break down into component elements.
1111

1212
## Syntax
1313

14-
*token*:
15-
16-
*keyword*
17-
18-
*identifier*
19-
20-
*constant*
21-
22-
*string-literal*
23-
24-
*operator*
25-
26-
*punctuator*
14+
*`token`*:\
15+
 *`keyword`*\
16+
 *`identifier`*\
17+
 *`constant`*\
18+
 *`string-literal`*\
19+
 *`operator`*\
20+
 *`punctuator`*
2721

2822
> [!NOTE]
2923
> See the introduction to [C Language Syntax Summary](../c-language/c-language-syntax-summary.md) for an explanation of the ANSI syntax conventions.
3024
31-
The keywords, identifiers, constants, string literals, and operators described in this section are examples of tokens. Punctuation characters such as brackets (**[ ]**), braces (**{ }**), parentheses ( **( )** ), and commas (**,**) are also tokens.
25+
The keywords, identifiers, constants, string literals, and operators described in this section are examples of tokens. Punctuation characters such as brackets (**`[ ]`**), braces (**`{ }`**), parentheses ( **`( )`** ), and commas (**`,`**) are also tokens.
3226

3327
## See also
3428

0 commit comments

Comments
 (0)