Typedef declaration
From cppreference.com
The typedef declaration provides a way to use an identifier in place of a (possibly complex) type declaration to create new objects of that type.
Contents |
[edit] Syntax
typedef type_declaration identifier; | |||||||||
[edit] Explanation
This section is incomplete |
[edit] Keywords
[edit] Example
This section is incomplete |