File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,25 +27,25 @@ Pointers are declared using the following sequence.
2727
2828 1 . The declaration specifiers:
2929
30- - An optional storage class specifier. For more information, see [ Specifiers] ( ../cpp/specifiers.md ) .
30+ - An optional storage class specifier. For more information, see [ Specifiers] ( ../cpp/specifiers.md ) .
3131
32- - An optional ** const** or ** volatile** keyword applying to the type of the object to be pointed to.
32+ - An optional ** const** or ** volatile** keyword applying to the type of the object to be pointed to.
3333
34- - The type specifier: the name of a type representing the type of the object to be pointed to.
34+ - The type specifier: the name of a type representing the type of the object to be pointed to.
3535
3636 2 . The declarator:
3737
38- - An optional Microsoft specific modifier. For more information, see [ Microsoft-Specific Modifiers] ( ../cpp/microsoft-specific-modifiers.md ) .
38+ - An optional Microsoft specific modifier. For more information, see [ Microsoft-Specific Modifiers] ( ../cpp/microsoft-specific-modifiers.md ) .
3939
40- - The ` * ` operator.
40+ - The ` * ` operator.
4141
42- - An optional ** const** or ** volatile** keyword applying to the pointer itself.
42+ - An optional ** const** or ** volatile** keyword applying to the pointer itself.
4343
44- - The identifier.
44+ - The identifier.
4545
46- - An optional initializer.
46+ - An optional initializer.
4747
48- The declarator for a pointer to function looks like this:
48+ The declarator for a pointer to function looks like this:
4949
5050```
5151(* [cv-qualifiers] identifier )( argument-list ) [cv-qualifers]
You can’t perform that action at this time.
0 commit comments