Computer Science, asked by thesilentpoet, 1 year ago

To define user defined data types which keyword is used in c++?​

Answers

Answered by Anonymous
1
HEY MATE HERE'S YOUR ANSWER ;

typedef int numbers; numbers num1,num2; In this example, num1 and num2 are declared as int variables. The main advantage of user defined data type is that it increases the program's readability. “Enum” is the keyword and “identifier” is the user defined data type that is used to declare the variables.

A user-defined data type (UDT) is a data type that derived from an existing data type. You can use UDTs to extend the built-in types already available and create your own customized data types. ... Reference type. Array type.
Similar questions