what is def type in c languagr
Answers
Answer:
typedef is used to define new data type names to make a program more readable to the programmer. ... The main use for typedef seems to be defining structures. For example: typedef struct {int age; char *name} person; person people; Take care to note that person is now a type specifier and NOT a variable name.
typedef is a reserved keyword in the programming languages C and C++. It is used to create an additional name (alias) for another data type, but does not create a new type.[1] As such, it is often used to simplify the syntax of declaring complex data structures consisting of struct and union types, but is just as common in providing specific descriptive type names for integer data types of varying lengths.
i hope it will helps you
thank u
plz mark me as brainliest yar