218k views
3 votes
Creating a new name with typedef __________.creates a new typecreates a new type namecreates a new variable namecreates a new variable

1 Answer

5 votes

Answer:-

The typedef specifier cannot be combined with any other specifier except for type-specifiers. The typedef-names are aliases for existing types, and are not declarations of new types. Typedef cannot be used to change the meaning of an existing type name (including a typedef-name).

User Merry
by
7.6k points